OSDN Git Service

[Refactor] ビット判定・操作式を ***_bits() にした
[hengbandforosx/hengbandosx.git] / src / player-info / sniper-data-type.h
1 #pragma once
2
3 #include "system/angband.h"
4
5 constexpr int16_t CONCENT_RADAR_THRESHOLD = 2;
6 constexpr int16_t CONCENT_TELE_THRESHOLD = 5;
7
8 struct sniper_data_type {
9     int16_t concent{}; //!< Concentration level
10     bool reset_concent{}; //!< Concentration reset flag
11 };