updating coding guidelines + plan for full juliet serialization and entity system

This commit is contained in:
2026-09-06 12:08:57 -04:00
parent 62e6284976
commit 1a045c3578
7 changed files with 4400 additions and 3 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ trigger: always_on
Code compiles with all warning active and warning as errors.
use static_cast or reinterpret_cast but not parenthesis for casting.
No exceptions
Use [[nodiscard]]
Use [[nodiscard]] when risk of memory leak (anything returning pointer)
auto is allowed but when its a pointer add the * and when reference adds the &
Member variable are CamelCase
Types are CamelCase