refactor: add typo

This commit is contained in:
2021-11-30 18:00:41 +01:00
parent ee94c811e1
commit 8351c5d09f

View File

@@ -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) {}