X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fworld%2FWorld.hpp;h=4755b18bcdea3cad24dc797c748691239d7f617f;hb=4da2ae6f12d7cf4594edb2d560c5c112e9bcd094;hp=c24ccf327f4a21a848a5f6db1dc4616be3aea192;hpb=8639a90bcbcd045c57cd489f02a25e0df4236deb;p=blank.git diff --git a/src/world/World.hpp b/src/world/World.hpp index c24ccf3..4755b18 100644 --- a/src/world/World.hpp +++ b/src/world/World.hpp @@ -89,7 +89,9 @@ public: std::list &Entities() noexcept { return entities; } const std::list &Entities() const noexcept { return entities; } + // dt in ms void Update(int dt); + // dt in s void Update(Entity &, float dt); void Render(Viewport &);