summaryrefslogtreecommitdiff
path: root/source/types.hpp
diff options
context:
space:
mode:
authorDaniel Hader <[email protected]>2026-08-23 20:25:36 -0500
committerDaniel Hader <[email protected]>2026-08-23 20:25:36 -0500
commit0532e04a9e273f2a9033a28cdbce1030a91c5bb4 (patch)
tree6e07d6bffeb834e01ff4cc18ec620ee265da8505 /source/types.hpp
initial commit working tile demo
Diffstat (limited to 'source/types.hpp')
-rw-r--r--source/types.hpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/source/types.hpp b/source/types.hpp
new file mode 100644
index 0000000..222b11c
--- /dev/null
+++ b/source/types.hpp
@@ -0,0 +1,18 @@
+#ifndef TYPES_HPP
+#define TYPES_HPP
+
+typedef signed char s8;
+typedef signed short s16;
+typedef signed int s32;
+
+typedef unsigned char u8;
+typedef unsigned short u16;
+typedef unsigned int u32;
+
+typedef volatile unsigned char vu8;
+typedef volatile unsigned short vu16;
+typedef volatile unsigned int vu32;
+
+typedef u16 color_t;
+
+#endif