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