-
Notifications
You must be signed in to change notification settings - Fork 494
Contributing
Pavel Djundik edited this page Nov 7, 2024
·
2 revisions
If you're interested in contributing to the SteamKit 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 SteamKit better.
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.
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.