From 352605c1b5af4ff2fa6e792a47b6f6451c1f4be8 Mon Sep 17 00:00:00 2001 From: tgsm Date: Sat, 21 Aug 2021 20:03:29 -0400 Subject: Add nitrobanner tool This tool was made from reverse-engineering the Nitro SDK's makebanner, and is intended to replace that program. It has been tested to match the Diamond/Pearl banners as well as the HeartGold/SoulSilver banners. --- tools/nitrobanner/types.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tools/nitrobanner/types.h (limited to 'tools/nitrobanner/types.h') 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 + +#if (__GNUC__ <= 7) && !defined _MSC_VER +#include +namespace filesystem = std::experimental::filesystem; +#else +#include +namespace filesystem = std::filesystem; +#endif + +using u8 = uint8_t; +using u16 = uint16_t; +using u32 = uint32_t; -- cgit v1.2.3