change folder name

This commit is contained in:
Julian Nießner
2019-06-02 17:54:50 +02:00
parent 84beaf7fd6
commit 473432d9bb
7 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ class GameServer;
//Own
#include "Shared.h"
#include "messages/Command.h"
#include "commands/Command.h"
static const int MAX_PLAYERS = 64;

View File

@@ -13,7 +13,7 @@ class Command
public:
// Create Commands from Network messages (Limited list)
static Command *create(int clientIndex, yojimbo::Message *message);
// Create Commands from Strings (Limited list)
// Create Commands from Strings internal (Limited list)
static Command *create(std::string);
virtual void execute(GameServer *server) = 0;