OSDN Git Service

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