mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
14c20fbd62
add comments as to why logic may seem confusing.
20 lines
377 B
C++
20 lines
377 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <functional>
|
|
|
|
class EntityCallbackTimer {
|
|
public:
|
|
EntityCallbackTimer(const float time, const std::function<void()> callback);
|
|
|
|
std::function<void()> GetCallback() const { return m_Callback; };
|
|
|
|
float GetTime() const { return m_Time; };
|
|
|
|
void Update(float deltaTime);
|
|
|
|
private:
|
|
std::function<void()> m_Callback;
|
|
float m_Time;
|
|
};
|