summaryrefslogtreecommitdiff
path: root/src/spell_idx_list.hpp
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2014-12-18 00:00:35 +0100
committerBardur Arantsson <bardur@scientician.net>2014-12-18 00:00:35 +0100
commit76d1d3f63fef965ba0a2d5ccea3408ad36e9ce4c (patch)
tree08b7758fc22456584b6fb3477c30bf569e79d500 /src/spell_idx_list.hpp
parentd34f472970e6a9fa2257a63ed40d021fc2c6f045 (diff)
Remove all uses of sglib
Diffstat (limited to 'src/spell_idx_list.hpp')
-rw-r--r--src/spell_idx_list.hpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/spell_idx_list.hpp b/src/spell_idx_list.hpp
new file mode 100644
index 00000000..ad913e83
--- /dev/null
+++ b/src/spell_idx_list.hpp
@@ -0,0 +1,11 @@
+#pragma once
+
+#include "spell_idx_list_fwd.h"
+#include <vector>
+// FIXME: h-basic for the s32b?
+
+struct spell_idx_list {
+ // FIXME: stupidity because we can't "override" a fwd-declared-struct directly
+ std::vector<s32b> v;
+};
+