DarkflameServer/dGame/dEntity/EntityTimer.h
2023-06-15 02:32:30 -07:00

18 lines
243 B
C++

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