DarkflameServer/dGame/dEntity/EntityTimer.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
246 B
C
Raw Normal View History

#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;
};