OSDN Git Service

Merge pull request #422 from habu1010/feature/c++nize
[hengbandforosx/hengbandosx.git] / src / floor / floor-mode-changer.cpp
1 #include "floor/floor-mode-changer.h"
2
3 /*!
4  * @brief フロア切り替え時の処理フラグを追加する / Prepare mode flags of changing floor
5  * @param creature_ptr プレーヤーへの参照ポインタ
6  * @param mode 追加したい所持フラグ
7  * @return なし
8  */
9 void prepare_change_floor_mode(player_type *creature_ptr, BIT_FLAGS mode) { creature_ptr->change_floor_mode |= mode; }