summaryrefslogtreecommitdiff
path: root/src/spell_type_fwd.hpp
blob: d5b065d1cf675f41bbadf059227585f208a488bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

/*
 * Spell effect function result
 */
typedef enum {
	NO_CAST,             /* Spell not cast; user aborted */
	CAST,                /* Spell was cast */
} casting_result;

/*
 * Forward declaration of the spell_type
 */
typedef struct spell_type spell_type;
struct spell_type;