Files
mapmap/HACKING
2014-03-04 11:22:46 -05:00

15 lines
416 B
Plaintext

Contribute to MapMap
====================
Coding style
------------
* indent with 2 spaces
* opening curly braces on a new line
* function and method names camelCase, with lowercase first letter
* class names CamelCase
* private data members with an underscore as a prefix: _likeThis
* file names all lowercase
* always add spaces between operators such as +, -, /, * casts, etc. (except pointers and references)