#pragma once //simple encapsulation for DT class Time { public: static float& GetDeltaTime() { static float deltaTime; return deltaTime; } };