From f8ffa67a113add810b915aa13287f187ea168e56 Mon Sep 17 00:00:00 2001 From: Sara Date: Thu, 2 May 2024 15:06:36 +0200 Subject: [PATCH] feat: removed references to overview mode and tactics movement --- src/tunnels_player.hpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/tunnels_player.hpp b/src/tunnels_player.hpp index 86c15f0..656081b 100644 --- a/src/tunnels_player.hpp +++ b/src/tunnels_player.hpp @@ -19,7 +19,6 @@ class TunnelsPlayer : public Node3D, public IPlayer { enum State { ManualControl = 0x0, Tactics = 0x1, - Overview = 0x2, }; public: @@ -66,7 +65,6 @@ private: static float const ROTATION_Y_MIN_INFLUENCE; static float const ROTATION_MARGIN_TACTICS_MUL; static float const ROTATION_MARGIN; - static float const TACTICS_MOVEMENT_SPEED; }; }