mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-08-04 09:44:10 +00:00
Public release of the DLU server code!
Have fun!
This commit is contained in:
18
dGame/dEntity/EntityTimer.h
Normal file
18
dGame/dEntity/EntityTimer.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#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;
|
||||
};
|
Reference in New Issue
Block a user