b8affcadbc
i don't know if it was such a great idea but at least it is a starting point.
20 lines
453 B
Markdown
20 lines
453 B
Markdown
# Current naming conventions (subject to debate)
|
|
|
|
## Function names
|
|
|
|
### shared functions
|
|
|
|
function should start by the name of their module in camelCase followed by an underscore and the name of the function in camelCase
|
|
|
|
example:
|
|
steam_searchGames()
|
|
|
|
|
|
### static functions
|
|
|
|
there is no rule for now
|
|
|
|
## Struct names
|
|
|
|
function should start by the name of their module in camelCase followed by an underscore and the name of the struct in PascalCase
|