From 83ce645e99009c6f00575b40865acea50bc7b425 Mon Sep 17 00:00:00 2001 From: Reece Wilson Date: Thu, 28 Oct 2021 21:17:52 +0000 Subject: [PATCH] [+] Added AuUInt typedef --- Include/AuroraEnum.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Include/AuroraEnum.hpp b/Include/AuroraEnum.hpp index 41e55f7..717636b 100644 --- a/Include/AuroraEnum.hpp +++ b/Include/AuroraEnum.hpp @@ -20,6 +20,11 @@ using AuHashMap = std::unordered_map; using AuString = std::string; #endif +#if !defined(AU_UInt) +#define AU_UInt +using AuUInt = size_t; +#endif + #endif ///////////////////////////////////////////////////////////////////////////////////////////