OSDN Git Service

Merge pull request #3569 from sikabane-works/release/3.0.0.88-alpha
[hengbandforosx/hengbandosx.git] / src / melee / melee-switcher.h
1 #pragma once
2
3 enum class BlowEffectType {
4     NONE = 0,
5     FEAR = 1,
6     SLEEP = 2,
7     HEAL = 3,
8 };
9
10 struct mam_type;
11 class PlayerType;
12 void describe_melee_method(PlayerType *player_ptr, mam_type *mam_ptr);
13 void decide_monster_attack_effect(PlayerType *player_ptr, mam_type *mam_ptr);
14 void describe_monster_missed_monster(PlayerType *player_ptr, mam_type *mam_ptr);