Daniele Bartolini 10 lat temu
rodzic
commit
bc75bb01fb
1 zmienionych plików z 4 dodań i 0 usunięć
  1. 4 0
      src/core/types.h

+ 4 - 0
src/core/types.h

@@ -8,6 +8,8 @@
 #include <stddef.h> // NULL
 #include <stddef.h> // NULL
 #include <stdint.h>
 #include <stdint.h>
 
 
+namespace crown
+{
 typedef int8_t   s8;
 typedef int8_t   s8;
 typedef uint8_t  u8;
 typedef uint8_t  u8;
 typedef int16_t  s16;
 typedef int16_t  s16;
@@ -19,6 +21,8 @@ typedef uint64_t u64;
 typedef float    f32;
 typedef float    f32;
 typedef double   f64;
 typedef double   f64;
 
 
+} // namespace crown
+
 #if defined(_MSC_VER)
 #if defined(_MSC_VER)
 	#define _ALLOW_KEYWORD_MACROS
 	#define _ALLOW_KEYWORD_MACROS
 #endif
 #endif