summaryrefslogtreecommitdiff
path: root/src/school_book.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/school_book.hpp')
-rw-r--r--src/school_book.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/school_book.hpp b/src/school_book.hpp
new file mode 100644
index 00000000..51d3e6a7
--- /dev/null
+++ b/src/school_book.hpp
@@ -0,0 +1,15 @@
+#pragma once
+
+#include "h-basic.h"
+
+#include <vector>
+
+/**
+ * School book.
+ */
+struct school_book {
+ /**
+ * Indexes of all the spells in the book.
+ */
+ std::vector<s32b> spell_idxs;
+};