diff options
Diffstat (limited to 'types.hpp')
-rw-r--r-- | types.hpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/types.hpp b/types.hpp new file mode 100644 index 00000000..b5971602 --- /dev/null +++ b/types.hpp @@ -0,0 +1,17 @@ +#ifndef TYPES_HPP_INCLUDED
+#define TYPES_HPP_INCLUDED
+
+enum eCoreType
+{
+ CORETYPE_ANY,
+ CORETYPE_CHAR,
+ CORETYPE_UINT, CORETYPE_INT,
+ CORETYPE_U8, CORETYPE_I8,
+ CORETYPE_U16, CORETYPE_I16,
+ CORETYPE_U32, CORETYPE_I32,
+ CORETYPE_U64, CORETYPE_I64,
+ CORETYPE_f32,
+ CORETYPE_f64,
+};
+
+#endif // TYPES_HPP_INCLUDED
|