| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include "Library/HostIO/HioNode.h" |
| 4 | |
| 5 | #include "Player/IJudge.h" |
| 6 | |
| 7 | class PlayerConst; |
| 8 | class PlayerInput; |
| 9 | class IUsePlayerHeightCheck; |
| 10 | class IPlayerModelChanger; |
| 11 | |
| 12 | class PlayerJudgeStartHipDrop : public al::HioNode, public IJudge { |
| 13 | public: |
| 14 | PlayerJudgeStartHipDrop(const PlayerConst*, const PlayerInput*, const IUsePlayerHeightCheck*, |
| 15 | const IPlayerModelChanger*); |
| 16 | |
| 17 | void reset() override {} |
| 18 | |
| 19 | void update() override {} |
| 20 | |
| 21 | bool judge() const override; |
| 22 | |
| 23 | private: |
| 24 | const PlayerConst* mConst; |
| 25 | const PlayerInput* mInput; |
| 26 | const IUsePlayerHeightCheck* mHeightCheck; |
| 27 | const IPlayerModelChanger* mModelChanger; |
| 28 | }; |
| 29 | |
| 30 | static_assert(sizeof(PlayerJudgeStartHipDrop) == 0x28); |
| 31 |