summaryrefslogtreecommitdiff
path: root/src/spells3.cc
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2015-02-23 09:12:01 +0100
committerBardur Arantsson <bardur@scientician.net>2015-02-23 09:12:01 +0100
commit37ac44add61e4547507770017dcb85b53c20acb5 (patch)
tree20d678f3d06cf850b39b1c20b1d21f9c8b49a5db /src/spells3.cc
parent37cea853947851134b2e6f2e338d85ddc5378616 (diff)
Split util.cc function declarations into separate header files
We need one .h file and one .hpp since some of the functions are being called from plain C code.
Diffstat (limited to 'src/spells3.cc')
-rw-r--r--src/spells3.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/spells3.cc b/src/spells3.cc
index 22bede27..0e19a492 100644
--- a/src/spells3.cc
+++ b/src/spells3.cc
@@ -3,6 +3,7 @@
#include "angband.h"
#include "cave.hpp"
#include "cmd5.hpp"
+#include "mimic.hpp"
#include "skills.hpp"
#include "spell_type.hpp"
#include "spell_idx_list.hpp"
@@ -10,7 +11,7 @@
#include "spells2.hpp"
#include "spells4.hpp"
#include "spells5.hpp"
-#include "mimic.hpp"
+#include "util.hpp"
#include "xtra2.hpp"
#include <algorithm>