Rename orders -> order

This commit is contained in:
Marc Di Luzio 2014-12-16 13:13:02 +00:00
parent 8a486fdd40
commit 714fd2894d
5 changed files with 4 additions and 4 deletions

View file

@ -11,7 +11,7 @@ include_directories(
set( SOURCES set( SOURCES
game.cpp game.cpp
unit.cpp unit.cpp
orders.cpp order.cpp
) )
add_library( game ${SOURCES} ) add_library( game ${SOURCES} )

View file

@ -3,7 +3,7 @@
#include "unit.h" #include "unit.h"
#include "gametypes.h" #include "gametypes.h"
#include "orders.h" #include "order.h"
// Type for order and unit pairs // Type for order and unit pairs
struct OrderUnitPair struct OrderUnitPair

View file

@ -1,5 +1,5 @@
#include <string.h> #include <string.h>
#include "orders.h" #include "order.h"
#include "mathtypes.h" #include "mathtypes.h"

View file

@ -1,7 +1,7 @@
#include <iostream> // std::cout #include <iostream> // std::cout
#include "board.h" #include "board.h"
#include "orders.h" #include "order.h"
#include "game.h" #include "game.h"
const char* tests() const char* tests()