| 123456789101112131415161718192021222324 |
- #pragma once
- #include "BsPlatformDefines.h"
- /**
- * @brief Commonly used types.
- */
- namespace BansheeEngine
- {
- typedef char INT8;
- typedef unsigned char UINT8;
- typedef short INT16;
- typedef unsigned short UINT16;
- typedef int INT32;
- typedef unsigned int UINT32;
- #if BS_COMPILER == BS_COMPILER_MSVC
- typedef unsigned __int64 UINT64;
- typedef __int64 INT64;
- #else
- typedef unsigned long long UINT64;
- typedef long long INT64;
- #endif
- }
|