OdysseyDecomp/lib/game/hack/HackCapThrowParam.h
2021-12-20 22:26:41 +01:00

37 lines
810 B
C++

#pragma once
namespace al {
class LiveActor;
}
class HackCapThrowParam {
public:
HackCapThrowParam(al::LiveActor* actor);
private:
float* mHackThrowHeight;
float* mMaxVel;
float* mContinuousThrowSpeed;
int* mBreakTime;
float* mMaxDist;
int* mEndpointStopTime;
int* mMaxEndpointStopTime;
float* mReturnStrength;
float* mMaxRetSpeed;
float* mTurnAngleLimit;
float* mWaterMaxSpeed;
float* mWaterDist;
int* mWaterBreakTime;
float* mWaterMaxRetSpeed;
float* mTornadoDist;
float* mTornadoMaxDist;
int* mTornadoReflectTime;
float* mRollSpeed;
float* mRollDistTop;
float* mRollDistBottom;
int* mRollBrakeTimeTop;
int* mRollBrakeTimeBottom;
float* mRollGroundGroundedPoseTrack;
float* mRollGroundAerialPoseTrack;
};