diff options
Diffstat (limited to 'game')
-rw-r--r-- | game/worldobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/game/worldobject.h b/game/worldobject.h index db69532..0340ac4 100644 --- a/game/worldobject.h +++ b/game/worldobject.h @@ -4,10 +4,10 @@ #include <chrono> #include <special_members.hpp> +using TickDuration = std::chrono::duration<float, std::chrono::seconds::period>; + class WorldObject { public: - using TickDuration = std::chrono::duration<float, std::chrono::seconds::period>; - WorldObject() = default; virtual ~WorldObject() = default; NO_COPY(WorldObject); |