Skip to content

Latest commit

 

History

History
24 lines (22 loc) · 277 Bytes

Coding-Standards.md

File metadata and controls

24 lines (22 loc) · 277 Bytes

C++

Do NOT use Java-like braces

Correct:
if (apples_dropped > 30)
{
    statement;
}
Incorrect:
if (apples_dropped > 30) {
    statement;
}

Indentation is 4 spaces. No hard tabs.


Lua

[TODO]

AngelScript

[TODO]