summaryrefslogtreecommitdiff
path: root/src/spellbinder.hpp
blob: d7f41f63d97d0b8609936efe46b0ecb2dbbf96fd (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.hpp"
#include <vector>

/**
 * Spellbinder state
 */
struct spellbinder {

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

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

};