| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include <math/seadMathCalcCommon.h> |
| 4 | |
| 5 | class PlayerTrigger; |
| 6 | |
| 7 | class PlayerCounterAfterUpperPunch { |
| 8 | public: |
| 9 | PlayerCounterAfterUpperPunch(); |
| 10 | void update(const PlayerTrigger* trigger); |
| 11 | |
| 12 | private: |
| 13 | // yes, this is an u32, bounded by a signed s32 |
| 14 | u32 mCounter = sead::Mathi::maxNumber(); |
| 15 | }; |
| 16 | |
| 17 | static_assert(sizeof(PlayerCounterAfterUpperPunch) == 0x4); |
| 18 |