OSDN Git Service

580e4ed9d2054f8ba013cff4c757011178981282
[hengbandforosx/hengbandosx.git] / src / player-ability / player-constitution.h
1 #pragma once
2
3 #include "player-status/player-basic-statistics.h"
4
5 struct player_type;
6 class PlayerConstitution : public PlayerBasicStatistics {
7 public:
8     PlayerConstitution(player_type *player_ptr);
9
10 protected:
11     void set_locals() override;
12     int16_t race_value() override;
13     int16_t time_effect_value() override;
14     int16_t battleform_value() override;
15     int16_t mutation_value() override;
16 };