OSDN Git Service

Merge pull request #1548 from Hourier/feature/Create-TimedEffects-Class
[hengbandforosx/hengbandosx.git] / src / timed-effect / timed-effects.cpp
1 #include "timed-effect/timed-effects.h"
2 #include "timed-effect/player-stun.h"
3
4 TimedEffects::TimedEffects()
5     : player_stun(std::make_shared<PlayerStun>())
6 {
7 }
8
9 std::shared_ptr<PlayerStun> TimedEffects::stun() const
10 {
11     return this->player_stun;
12 }