From 8351c5d09f9c632b494c1469ef2c354f9f6f5555 Mon Sep 17 00:00:00 2001 From: Persson-dev Date: Tue, 30 Nov 2021 18:00:41 +0100 Subject: [PATCH] refactor: add typo --- include/misc/Time.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/misc/Time.h b/include/misc/Time.h index 37b4341..18a912d 100644 --- a/include/misc/Time.h +++ b/include/misc/Time.h @@ -39,7 +39,7 @@ public: // utililty class to call function at regular period of time class Timer { private: - std::uint64_t m_Interval; + std::uint64_t m_Interval; // in millis std::uint64_t m_InternalTime = 0; public: Timer() : m_Interval(0) {} @@ -56,7 +56,7 @@ public: // utililty class to call function at regular period of time with a cooldown (used for towers) class CooldownTimer { private: - std::uint64_t m_Cooldown; + std::uint64_t m_Cooldown; // in millis std::uint64_t m_CooldownTime; public: CooldownTimer() : m_Cooldown(0), m_CooldownTime(0) {}