Rename orders -> order
This commit is contained in:
parent
8a486fdd40
commit
714fd2894d
5 changed files with 4 additions and 4 deletions
|
@ -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} )
|
|
@ -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
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "orders.h"
|
#include "order.h"
|
||||||
|
|
||||||
#include "mathtypes.h"
|
#include "mathtypes.h"
|
||||||
|
|
|
@ -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()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue