diff options
author | Bardur Arantsson <bardur@scientician.net> | 2015-06-07 17:49:09 +0200 |
---|---|---|
committer | Bardur Arantsson <bardur@scientician.net> | 2015-06-07 17:49:09 +0200 |
commit | c8a270e51dc22f39ed048ab1cc609e6e456df58f (patch) | |
tree | 6d6a7d2338abdbecbb1351e2c9cbf9b08b42b6bc /src/wizard2.cc | |
parent | dcb193fabc7af4776bdf0d31045f6801fa18000e (diff) |
Split types.h into separate header for each type
Diffstat (limited to 'src/wizard2.cc')
-rw-r--r-- | src/wizard2.cc | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/wizard2.cc b/src/wizard2.cc index 692bacb4..c4f5436e 100644 --- a/src/wizard2.cc +++ b/src/wizard2.cc @@ -8,25 +8,34 @@ #include "wizard2.hpp" -#include "angband.h" +#include "artifact_type.hpp" #include "cave.hpp" +#include "cave_type.hpp" #include "cmd4.hpp" #include "corrupt.hpp" +#include "dungeon_info_type.hpp" #include "files.hpp" #include "hooks.hpp" #include "monster2.hpp" +#include "monster_race.hpp" +#include "monster_type.hpp" #include "object1.hpp" #include "object2.hpp" +#include "object_kind.hpp" +#include "player_type.hpp" #include "randart.hpp" #include "status.hpp" #include "spells1.hpp" #include "spells2.hpp" +#include "stats.hpp" #include "tables.hpp" #include "traps.hpp" #include "util.hpp" #include "util.h" #include "variable.h" #include "variable.hpp" +#include "wilderness_map.hpp" +#include "wilderness_type_info.hpp" #include "wizard1.hpp" #include "xtra1.hpp" #include "xtra2.hpp" |