Setting up GasaGen in the editor module

issues with clang format...
This commit is contained in:
2024-10-21 22:39:40 -04:00
parent 2522f4df6c
commit c492613179
23 changed files with 27581 additions and 14 deletions

View File

@ -8,10 +8,12 @@
#define internal static
#define local_persist static
#ifndef ccast
#define ccast( Type, Value ) ( *const_cast<(Type)*>( &( Value ) ) )
#define pcast( Type, Value ) ( *reinterpret_cast<(Type)*>( &( Value ) ) )
#define rcast( Type, Value ) reinterpret_cast<Type>( Value )
#define scast( Type, Value ) static_cast<Type>( Value )
#endif
#define bit(position) (1 << position)