Do you want to contribute to IWindow please follow these instructions to get your pull requests accepted.
- All functions, methods, classes and namespaces follow
PascalCase
. - All variables follow
camelCase
#define
andconstexpr
variables need to beUPPER_CASE
.- Tabs must be 4 spaces no exceptions.
- Curly braces must be placed on the same line as declarations. This applies to functions, methods, classes, namespaces and conditional statments.
- All private member variables must start with
m_
and the first character (other thanm_
) is lower case (e.g.m_x
).