From 6cd00aacfa22fed6a54a9b812f6b069ad16feec0 Mon Sep 17 00:00:00 2001 From: untodesu Date: Sun, 29 Jun 2025 22:24:42 +0500 Subject: Move game sources into src subdirectory --- game/shared/velocity.hh | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 game/shared/velocity.hh (limited to 'game/shared/velocity.hh') diff --git a/game/shared/velocity.hh b/game/shared/velocity.hh deleted file mode 100644 index 45a2858..0000000 --- a/game/shared/velocity.hh +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef SHARED_VELOCITY_HH -#define SHARED_VELOCITY_HH 1 -#pragma once - -class Dimension; - -struct VelocityComponent final { - glm::fvec3 value; - -public: - // Updates entities TransformComponent values - // according to velocities multiplied by fixed_frametime. - // NOTE: This system was previously called inertial - static void fixed_update(Dimension* dimension); -}; - -#endif /* SHARED_VELOCITY_HH */ -- cgit