summaryrefslogtreecommitdiff
path: root/src/school_book.hpp
blob: 51d3e6a76386071022671cc2c351e81e89268aea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
};