forked from github/server
fix broken includes
This commit is contained in:
parent
9a281cfdce
commit
5b099e27f6
1 changed files with 19 additions and 15 deletions
|
@ -1,24 +1,28 @@
|
||||||
|
#ifdef _MSC_VER
|
||||||
#include <platform.h>
|
#include <platform.h>
|
||||||
#include "types.h"
|
#endif
|
||||||
|
|
||||||
|
#include "kernel/types.h"
|
||||||
|
|
||||||
#include "jsonconf.h"
|
#include "jsonconf.h"
|
||||||
|
|
||||||
#include "config.h"
|
#include "kernel/config.h"
|
||||||
#include "building.h"
|
#include "kernel/building.h"
|
||||||
#include "direction.h"
|
#include "kernel/item.h"
|
||||||
#include "item.h"
|
#include "kernel/race.h"
|
||||||
#include "keyword.h"
|
#include "kernel/ship.h"
|
||||||
#include "race.h"
|
#include "kernel/spell.h"
|
||||||
#include "ship.h"
|
#include "kernel/order.h"
|
||||||
#include "spell.h"
|
#include "kernel/terrain.h"
|
||||||
#include "order.h"
|
|
||||||
#include "terrain.h"
|
|
||||||
|
|
||||||
#include "move.h"
|
|
||||||
#include "calendar.h"
|
|
||||||
#include "prefix.h"
|
|
||||||
|
|
||||||
#include "util/language.h"
|
#include "util/language.h"
|
||||||
|
|
||||||
|
#include "calendar.h"
|
||||||
|
#include "direction.h"
|
||||||
|
#include "keyword.h"
|
||||||
|
#include "move.h"
|
||||||
|
#include "prefix.h"
|
||||||
|
|
||||||
#include <CuTest.h>
|
#include <CuTest.h>
|
||||||
#include <cJSON.h>
|
#include <cJSON.h>
|
||||||
#include <tests.h>
|
#include <tests.h>
|
||||||
|
|
Loading…
Reference in a new issue