summaryrefslogtreecommitdiffstats
path: root/src/game/shared/entity/velocity.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/shared/entity/velocity.cc')
-rw-r--r--src/game/shared/entity/velocity.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/shared/entity/velocity.cc b/src/game/shared/entity/velocity.cc
index 86df445..6fb8c80 100644
--- a/src/game/shared/entity/velocity.cc
+++ b/src/game/shared/entity/velocity.cc
@@ -9,9 +9,9 @@
#include "shared/globals.hh"
-void entity::Velocity::fixed_update(world::Dimension* dimension)
+void Velocity::fixed_update(Dimension* dimension)
{
- auto group = dimension->entities.group<entity::Velocity>(entt::get<entity::Transform>, entt::exclude<entity::Stasis>);
+ auto group = dimension->entities.group<Velocity>(entt::get<Transform>, entt::exclude<Stasis>);
for(auto [entity, velocity, transform] : group.each()) {
transform.local += velocity.value * globals::fixed_frametime;