summaryrefslogtreecommitdiff
path: root/src/spellbinder.hpp
blob: 078d9eac62064a56e6dc326ba1733910b03da78d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include "h-basic.h"
#include <vector>

/**
 * Spellbinder state
 */
struct spellbinder {

	/**
	 * Bound spells.
	 */
	std::vector<u32b> spell_idxs;

	/**
	 * Trigger condition.
	 */
	byte trigger = 0;

};