Daniele Bartolini 10 лет назад
Родитель
Сommit
bc75bb01fb
1 измененных файлов с 4 добавлено и 0 удалено
  1. 4 0
      src/core/types.h

+ 4 - 0
src/core/types.h

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