DarkflameServer/dGame/dEntity/EntityTimer.cpp

23 lines
340 B
C++
Raw Normal View History

#include "EntityTimer.h"
EntityTimer::EntityTimer(const std::string& name, const float& time) {
m_Name = name;
m_Time = time;
}
EntityTimer::~EntityTimer() {
2022-07-28 13:39:57 +00:00
}
std::string EntityTimer::GetName() {
return m_Name;
}
float EntityTimer::GetTime() {
return m_Time;
}
void EntityTimer::Update(float deltaTime) {
m_Time -= deltaTime;
2022-07-28 13:39:57 +00:00
}