mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
0545adfac3
Have fun!
19 lines
246 B
C++
19 lines
246 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class EntityTimer {
|
|
public:
|
|
EntityTimer(std::string name, float time);
|
|
~EntityTimer();
|
|
|
|
std::string GetName();
|
|
float GetTime();
|
|
|
|
void Update(float deltaTime);
|
|
|
|
private:
|
|
std::string m_Name;
|
|
float m_Time;
|
|
};
|