From 203453662067c159a8c55a13e696529f72cc09f2 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Thu, 12 Mar 2026 16:56:26 -0500 Subject: [PATCH] feat(util): add whoa_tick_t --- src/util/Time.hpp | 1 + src/util/time/Types.hpp | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 src/util/time/Types.hpp diff --git a/src/util/Time.hpp b/src/util/Time.hpp index db18ed3..af5524f 100644 --- a/src/util/Time.hpp +++ b/src/util/Time.hpp @@ -2,6 +2,7 @@ #define UTIL_TIME_HPP #include "util/time/CGameTime.hpp" +#include "util/time/Types.hpp" #include "util/time/WowTime.hpp" #endif diff --git a/src/util/time/Types.hpp b/src/util/time/Types.hpp new file mode 100644 index 0000000..924886e --- /dev/null +++ b/src/util/time/Types.hpp @@ -0,0 +1,8 @@ +#ifndef UTIL_TIME_TYPES_HPP +#define UTIL_TIME_TYPES_HPP + +#include + +typedef uint64_t whoa_tick_t; + +#endif