Skip to content

Contributing

Ryan Stecker edited this page Jul 10, 2013 · 1 revision

If you're interested in contributing to the SteamKit2 project, feel free to fork our repo and send pull requests our way.

We're interested in missing feature implementations, bug fixes, or anything that can help make SteamKit2 better.

Style

If you do send us a pull request, please try to keep your code formatted in a similar style to our existing code:

  • 4 space indentation.
  • Spacing in between parenthesis in function calls and control flow statements:
void MyFunction( int someParam, string otherParam )

MyFunction( param1, param2 );
  • Braces on the next line:
while ( something )
{
}
  • If at all possible, try to include XML code documentation.

Issues

Another way you can contribute is by filing an issue on our issue tracker.

In this capacity you can point out bugs or request feature additions that may be accepted and eventually implemented.

Clone this wiki locally