OSDN Git Service

Merge pull request #3552 from habu1010/feature/delete-bom-from-utf8-encoding-files
[hengbandforosx/hengbandosx.git] / src / player-info / monk-data-type.h
1 #pragma once
2
3 #include "system/angband.h"
4
5 enum class MonkStanceType : uint8_t {
6     NONE = 0,
7     GENBU = 1, //!< 玄武の構え
8     BYAKKO = 2, //!< 白虎の構え
9     SEIRYU = 3, //!< 青竜の構え
10     SUZAKU = 4, //!< 朱雀の構え
11 };
12
13 struct monk_data_type {
14     MonkStanceType stance{};
15 };