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
game.cpp
unit.cpp
orders.cpp
order.cpp
)
add_library( game ${SOURCES} )

View file

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

View file

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

View file

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