Files
Seele/src/Engine/EngineTypes.h
T

14 lines
237 B
C++
Raw Normal View History

2020-04-01 02:17:49 +02:00
#include <stdint.h>
namespace Seele
{
typedef uint64_t uint64;
typedef uint32_t uint32;
typedef uint16_t uint16;
typedef uint8_t uint8;
typedef int64_t int64;
typedef int32_t int32;
typedef int16_t int16;
typedef int8_t int8;
}