Fix lists in CODINGSTYLE.md

This commit is contained in:
Tulpen 2023-06-01 13:00:32 +01:00
parent 8293e6cf4f
commit 76e38a87e2

View file

@ -5,6 +5,7 @@ Use C++17 as the C++ standard. Hibis should compile under all major compilers.
Each module of the game engine should be kept within their specific folders. E.g.:
- Core
- Renderer/(renderer name)
<!-- -->
If statically linking third party libraries are *absolutely* required, they must be placed in a folder called `external` in the repository root.
## Formatting
Files need to end with a new line.<br>
@ -29,6 +30,7 @@ Variables should be prefixed with specific chars depending on where the variable
- Member Variable - Prefix with `m`
- Global Variable - Prefix with `g`
- Static Variable - Prefix with `s`
<!-- -->
Example:
```cpp
const int gAmountOfTimesISuccessfullyWriteGoodVariableNames = 0;