diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-03-08 19:51:08 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-03-08 19:51:08 +0000 |
commit | 9c2f87faf5aee8ffad825c05fce01766c65180dd (patch) | |
tree | e5037cc9173aee76cc5013e34d038c6c07a3120f /game | |
parent | Add maxSpeed to rail vehicle class (diff) | |
download | ilt-9c2f87faf5aee8ffad825c05fce01766c65180dd.tar.bz2 ilt-9c2f87faf5aee8ffad825c05fce01766c65180dd.tar.xz ilt-9c2f87faf5aee8ffad825c05fce01766c65180dd.zip |
Move TickDuration type into global scope
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); |