This commit is contained in:
Bram Verhulst
2024-06-04 14:38:46 +02:00
parent e1165fdcb4
commit d7389411f5
9 changed files with 68 additions and 37 deletions

View File

@@ -35,7 +35,7 @@ class Player
public:
explicit Player(const Vector2f& Position, TextureManager* pTextureManager);
Player( const Player& other ) = default;
Player(Player&& other);
Player(Player&& other) = delete;
Player& operator=(const Player& other) = delete;
Player& operator=(Player&& other) = delete;