Variable naming conventions
Revision as of 19:45, 18 February 2022 by en>Admin (Created page with "==General Variable Naming Conventions== These are the basic naming conventions that are used for the Engine, although not enforced in all cases, should serve as a reference to try and apply when contributing to the source code. # Member variables are named with a '''m_''' prefix # Class names have a name starting with a capital letter '''ClassName''' for instance # Pointers use the '''p''' prefix #Smart Pointers use the '''sp''' prefix")
General Variable Naming Conventions
These are the basic naming conventions that are used for the Engine, although not enforced in all cases, should serve as a reference to try and apply when contributing to the source code.
- Member variables are named with a m_ prefix
- Class names have a name starting with a capital letter ClassName for instance
- Pointers use the p prefix
- Smart Pointers use the sp prefix