aboutsummaryrefslogtreecommitdiff
path: root/src/client/movement.hh
diff options
context:
space:
mode:
authorNicolas James <Eele1Ephe7uZahRie@tutanota.com>2025-02-12 21:57:46 +1100
committerNicolas James <Eele1Ephe7uZahRie@tutanota.com>2025-02-12 21:57:46 +1100
commite4483eca01b48b943cd0461e24a74ae1a3139ed4 (patch)
treeed58c3c246e3af1af337697695d780aa31f6ad9a /src/client/movement.hh
parent1cc08c51eb4b0f95c30c0a98ad1fc5ad3459b2df (diff)
Update to most recent version (old initial commit)
Diffstat (limited to 'src/client/movement.hh')
-rw-r--r--src/client/movement.hh23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/client/movement.hh b/src/client/movement.hh
deleted file mode 100644
index 82b56b1..0000000
--- a/src/client/movement.hh
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef CLIENT_MOVEMENT_HH_
-#define CLIENT_MOVEMENT_HH_
-
-#include "client/world.hh"
-#include "shared/movement.hh"
-#include "shared/net/net.hh"
-#include "shared/player.hh"
-
-namespace client {
-namespace movement {
-
-void move(shared::player& player, client::world::chunk::map& chunks,
- const float deltatime) noexcept;
-
-enum class interact_mode { add, remove };
-std::optional<std::pair<shared::math::coords, glm::ivec3>>
-interact(const shared::player& player, const interact_mode& mode,
- const client::world::chunk::map& chunks) noexcept;
-
-} // namespace movement
-} // namespace client
-
-#endif