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