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

/*
 * Spell effect function result
 */
typedef enum {
	NO_CAST,             /* Spell not cast; user aborted */
	CAST_OBVIOUS,        /* Cast; caster discovers effect (devices) */
	CAST_HIDDEN          /* Cast; caster does NOT discover effect (devices) */
} casting_result;

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