summaryrefslogtreecommitdiff
path: root/source/modules/asura-utils/type.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/modules/asura-utils/type.h')
-rw-r--r--source/modules/asura-utils/type.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/source/modules/asura-utils/type.h b/source/modules/asura-utils/type.h
deleted file mode 100644
index 5100fa3..0000000
--- a/source/modules/asura-utils/type.h
+++ /dev/null
@@ -1,37 +0,0 @@
-#ifndef _ASURA_UTILS_TYPE_H_
-#define _ASURA_UTILS_TYPE_H_
-
-#include <assert.h>
-#include <cstdlib>
-#include <stdint.h>
-
-#include "asura-base/Configure.h"
-
-namespace AsuraEngine
-{
-
- //--------------------------------------------------------------------------------//
-
- typedef int8_t int8;
- typedef uint8_t uint8;
- //typedef uint8 byte;
- typedef char byte;
- typedef int16_t int16;
- typedef uint16_t uint16;
- typedef int32_t int32;
- typedef uint32_t uint32;
- typedef int64_t int64;
- typedef uint64_t uint64;
-
- typedef uint32_t uint;
- typedef int32_t sint;
-
- typedef std::size_t size_t;
-
- typedef const char cc8;
-
-#define Assert assert
-
-} // namespace AsuraEngine
-
-#endif // _ASURA_CONFIG_H_ \ No newline at end of file