OSDN Git Service

Merge pull request #2460 from sikabane-works/release/3.0.0Alpha57
[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 };