1
edit
Changes
→Programming Style
== Programming Style ==
=== Indentation===
* 2 spaces for indentationIndents made with tabs* Do not use tab characterTab size is four characters
=== Blocks ===
<syntaxhighlight lang="cpp">
}</syntaxhighlight>
=== Classes ===
<syntaxhighlight lang="cpp">
class Console {
private:
public:
Console();
~Console();
}
</syntaxhighlight>
=== Variable Naming ===
Lower Camel Case
<syntaxhighlight lang="cpp">
</syntaxhighlight>