aboutsummaryrefslogtreecommitdiff
path: root/include/type.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/type.hpp')
-rw-r--r--include/type.hpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/type.hpp b/include/type.hpp
new file mode 100644
index 0000000..c46ff34
--- /dev/null
+++ b/include/type.hpp
@@ -0,0 +1,11 @@
+#pragma once
+
+enum struct Type {
+ INT,
+ CHAR,
+ BOOL,
+ STRING,
+ FLOAT,
+ DOUBLE,
+ VOID,
+};