[Server] Fix type name warning for Player

The warning in Visual Studio was: "'Player': type name first seen using 'class' now seen using 'struct'"
This commit is contained in:
David Cernat 2019-02-13 21:56:47 +02:00
parent c058dce346
commit 222837976c

View file

@ -21,7 +21,6 @@
#include "Cell.hpp"
#include "CellController.hpp"
struct Player;
typedef std::map<RakNet::RakNetGUID, Player*> TPlayers;
typedef std::map<unsigned short, Player*> TSlots;