OSDN Git Service

[Refactor] #2141 monster_type *m_ptrの宣言をautoに差し替えた
[hengbandforosx/hengbandosx.git] / src / action / open-close-execution.h
1 #pragma once
2 /*!
3  * @file open-close-execution.h
4  * @brief 扉や箱を開ける処理のヘッダ
5  */
6
7 #include "system/angband.h"
8
9 class PlayerType;
10 bool exe_open(PlayerType *player_ptr, POSITION y, POSITION x);
11 bool exe_close(PlayerType *player_ptr, POSITION y, POSITION x);
12 bool easy_open_door(PlayerType *player_ptr, POSITION y, POSITION x);
13 bool exe_disarm(PlayerType *player_ptr, POSITION y, POSITION x, DIRECTION dir);
14 bool exe_disarm_chest(PlayerType *player_ptr, POSITION y, POSITION x, OBJECT_IDX o_idx);
15 bool exe_bash(PlayerType *player_ptr, POSITION y, POSITION x, DIRECTION dir);