Renaming methods to better reflect what they do

This commit is contained in:
2025-10-07 12:13:03 +03:00
parent cc39fd31e8
commit eefea3ba13
2 changed files with 2 additions and 2 deletions

View File

@@ -40,7 +40,7 @@ using namespace Math::Literals;
// ======================== CLASSES ======================== // ======================== CLASSES ========================
class Manager { class Manager {
public: public:
static void AdvanceTime(); static void Advance();
static float DeltaTime; static float DeltaTime;
private: private:

View File

@@ -13,7 +13,7 @@ std::vector<uint16_t> Manager::toUnhook;
Timeline Manager::time{}; Timeline Manager::time{};
void Manager::AdvanceTime() { void Manager::Advance() {
if (time.currentFrameTime() == 0.0f) { if (time.currentFrameTime() == 0.0f) {
time.start(); time.start();
} }