DarkflameServer/dGame/dEntity/EntityTimer.h

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

18 lines
243 B
C
Raw Normal View History

#pragma once
#include <string>
class EntityTimer {
public:
EntityTimer(const std::string& name, const float& time);
std::string GetName();
float GetTime();
void Update(float deltaTime);
private:
std::string m_Name;
float m_Time;
};