refactor: add typo
This commit is contained in:
@@ -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) {}
|
||||
|
||||
Reference in New Issue
Block a user