forked from github/server
moving combatspells.c to the spells/ directory
This commit is contained in:
parent
1202578ab0
commit
8483c555fc
|
@ -14,7 +14,6 @@ SOURCES =
|
|||
build.c
|
||||
building.c
|
||||
calendar.c
|
||||
combatspells.c
|
||||
curse.c
|
||||
eressea.c
|
||||
equipment.c
|
||||
|
|
|
@ -320,9 +320,6 @@
|
|||
<File
|
||||
RelativePath=".\calendar.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\combatspells.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\curse.c">
|
||||
</File>
|
||||
|
|
|
@ -10,6 +10,7 @@ SubDirHdrs $(SUBDIR)/../.. ;
|
|||
SOURCES =
|
||||
alp.c
|
||||
buildingcurse.c
|
||||
combatspells.c
|
||||
regioncurse.c
|
||||
shipcurse.c
|
||||
spells.c
|
||||
|
|
|
@ -14,21 +14,21 @@
|
|||
#include "combatspells.h"
|
||||
|
||||
/* kernel includes */
|
||||
#include "battle.h"
|
||||
#include "build.h"
|
||||
#include "building.h"
|
||||
#include "faction.h"
|
||||
#include "item.h"
|
||||
#include "magic.h"
|
||||
#include "message.h"
|
||||
#include "order.h"
|
||||
#include "region.h"
|
||||
#include "unit.h"
|
||||
#include "movement.h"
|
||||
#include "spell.h"
|
||||
#include "spellid.h"
|
||||
#include "race.h"
|
||||
#include "skill.h"
|
||||
#include <kernel/battle.h>
|
||||
#include <kernel/build.h>
|
||||
#include <kernel/building.h>
|
||||
#include <kernel/faction.h>
|
||||
#include <kernel/item.h>
|
||||
#include <kernel/magic.h>
|
||||
#include <kernel/message.h>
|
||||
#include <kernel/order.h>
|
||||
#include <kernel/region.h>
|
||||
#include <kernel/unit.h>
|
||||
#include <kernel/movement.h>
|
||||
#include <kernel/spell.h>
|
||||
#include <kernel/spellid.h>
|
||||
#include <kernel/race.h>
|
||||
#include <kernel/skill.h>
|
||||
|
||||
/* util includes */
|
||||
#include <rand.h>
|
|
@ -17,6 +17,7 @@
|
|||
#include "spells.h"
|
||||
|
||||
#include "alp.h"
|
||||
#include "combatspells.h"
|
||||
|
||||
#include <curse.h>
|
||||
|
||||
|
@ -28,7 +29,6 @@ extern void ct_register(const struct curse_type * ct);
|
|||
#include <kernel/battle.h> /* für lovar */
|
||||
#include <kernel/border.h>
|
||||
#include <kernel/building.h>
|
||||
#include <kernel/combatspells.h>
|
||||
#include <kernel/curse.h>
|
||||
#include <kernel/spellid.h>
|
||||
#include <kernel/faction.h>
|
||||
|
|
|
@ -179,6 +179,9 @@
|
|||
<File
|
||||
RelativePath=".\buildingcurse.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\combatspells.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\regioncurse.h">
|
||||
</File>
|
||||
|
@ -198,6 +201,9 @@
|
|||
<File
|
||||
RelativePath=".\buildingcurse.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\combatspells.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\regioncurse.c">
|
||||
</File>
|
||||
|
|
Loading…
Reference in New Issue