About to add evet

This commit is contained in:
2023-11-17 13:21:56 -06:00
parent 5901b9e07c
commit 41c26dd103
7 changed files with 45 additions and 39 deletions

View File

@ -7,11 +7,6 @@
using namespace Dawn;
void ITimeManager::tick(float_t delta) {
this->delta = delta;
this->time += delta;
}
ITimeManager::~ITimeManager() {
}

View File

@ -14,10 +14,8 @@ namespace Dawn {
/**
* Ticks / updates the time management system.
*
* @param delta Time delta in seconds.
*/
void tick(float_t delta);
virtual void update() = 0;
/**
* Returns the real world time epoch.