summaryrefslogtreecommitdiff
path: root/tools/nitrobanner/types.h
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2021-08-22 08:17:16 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2021-08-22 08:17:16 -0400
commita1016647f68e2f9a1be452240204d34874f89338 (patch)
tree662f2acf2b558e676d2524c1689ffd09318ba82f /tools/nitrobanner/types.h
parent6a0b937064907c1790447f7ddd0c60e66e49cd70 (diff)
parentd08722a7381c4c05a40ee59bb6de556616e1dfc2 (diff)
Merge remote-tracking branch 'origin/master' into pikalax_work
Diffstat (limited to 'tools/nitrobanner/types.h')
-rw-r--r--tools/nitrobanner/types.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/nitrobanner/types.h b/tools/nitrobanner/types.h
new file mode 100644
index 00000000..5776e62f
--- /dev/null
+++ b/tools/nitrobanner/types.h
@@ -0,0 +1,15 @@
+#pragma once
+
+#include <cstdint>
+
+#if (__GNUC__ <= 7) && !defined _MSC_VER
+#include <experimental/filesystem>
+namespace filesystem = std::experimental::filesystem;
+#else
+#include <filesystem>
+namespace filesystem = std::filesystem;
+#endif
+
+using u8 = uint8_t;
+using u16 = uint16_t;
+using u32 = uint32_t;