summaryrefslogtreecommitdiff
path: root/themes/types.h
diff options
context:
space:
mode:
authormattkae <mattkae@protonmail.com>2021-09-19 16:32:15 -0400
committermattkae <mattkae@protonmail.com>2021-09-19 16:32:15 -0400
commitde850676e79da39aec6f1ce0400cfa94cecbd744 (patch)
tree48927e3cd3a518ddee1874df40d188cbc5112393 /themes/types.h
First commit
Diffstat (limited to 'themes/types.h')
-rw-r--r--themes/types.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/themes/types.h b/themes/types.h
new file mode 100644
index 0000000..7bac7f3
--- /dev/null
+++ b/themes/types.h
@@ -0,0 +1,16 @@
+#pragma once
+
+#include <cstdint>
+
+typedef int8_t int8;
+typedef int16_t int16;
+typedef int32_t int32;
+typedef int64_t int64;
+
+typedef uint8_t uint8;
+typedef uint16_t uint16;
+typedef uint32_t uint32;
+typedef unsigned long uint64;
+
+typedef float float32;
+typedef double float64;