===============================================================================
	Code style
===============================================================================

Formatting:
-----------

- Only use // comments, because they can be nested.
- Use 4 spaces for indenting, no tabs.
- Prefix all Enigma Studio related classes, functions, macros, constants,
  etc. with an "e" character.
- Prefix private/protected member functions with "_" character.
- Prefix class member variables with "m_".
- Use camel notation. For example type "numOfUsedFields" instead of
  "num_of_used_fields" or any other notation.