OSDN Git Service

Merge branch 'master' of git.osdn.net:/gitroot/hengband/hengband
[hengband/hengband.git] / src / mind / mind-blue-mage.h
1 #pragma once
2
3 #include "system/angband.h"
4
5 typedef enum blue_magic_type {
6         MONSPELL_TYPE_BOLT = 1,
7     MONSPELL_TYPE_BALL = 2,
8     MONSPELL_TYPE_BREATH = 3,
9     MONSPELL_TYPE_SUMMON = 4,
10     MONSPELL_TYPE_OTHER = 5,
11 } blue_magic_type;
12
13 bool do_cmd_cast_learned(player_type *caster_ptr);