pikmin2/include/efx/TMiuAttack.h
HeartPiece 077a5bcf4f Sort more efx headers
one more round left, then efx headers are done
2022-10-12 23:43:09 +11:00

19 lines
283 B
C++

#ifndef _EFX_TMIUATTACK_H
#define _EFX_TMIUATTACK_H
#include "efx/TSimple.h"
namespace efx {
struct TMiuAttack : public TSimple2 {
inline TMiuAttack()
: TSimple2(PID_MiuAttack_1, PID_MiuAttack_2)
{
}
// _00 = VTBL
// _00-_10 = TSimple2
};
} // namespace efx
#endif