PortalGame/src/app.hpp
2025-08-05 14:01:26 +02:00

16 lines
145 B
C++

#pragma once
class App
{
float m_time = 0.0f;
public:
App();
void Frame();
void SetTime(float time) { m_time = time; }
};