fix terrains.json, reduce config.h use

This commit is contained in:
Enno Rehling 2016-11-15 23:56:39 +01:00
parent 360776f8b9
commit e50dfbf42b
6 changed files with 3 additions and 5 deletions

View File

@ -222,6 +222,6 @@
"div": "100" "div": "100"
} }
} }
}, }
} }
} }

View File

@ -13,7 +13,6 @@
*/ */
#include <platform.h> #include <platform.h>
#include <kernel/config.h>
/* kernel includes */ /* kernel includes */
#include <kernel/race.h> #include <kernel/race.h>

View File

@ -11,7 +11,6 @@
*/ */
#include <platform.h> #include <platform.h>
#include <kernel/config.h>
/* kernel includes */ /* kernel includes */
#include <kernel/race.h> #include <kernel/race.h>

View File

@ -9,7 +9,6 @@
*/ */
#include <platform.h> #include <platform.h>
#include <kernel/config.h>
#include "races.h" #include "races.h"
#include <kernel/building.h> #include <kernel/building.h>

View File

@ -14,6 +14,7 @@
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
struct unit;
void register_races(void); void register_races(void);
void make_undead_unit(struct unit *); void make_undead_unit(struct unit *);

View File

@ -13,9 +13,9 @@
*/ */
#include <platform.h> #include <platform.h>
#include <kernel/config.h>
/* kernel includes */ /* kernel includes */
#include <kernel/config.h>
#include <kernel/race.h> #include <kernel/race.h>
#include <kernel/order.h> #include <kernel/order.h>
#include <kernel/unit.h> #include <kernel/unit.h>