Henrique Gemignani Passos Lima 1429792970 Match and link CBSGetup
Former-commit-id: 41bf7e38fb9cea81a46bee348f6f366ff399a54a
2022-10-28 12:17:39 +03:00

21 lines
512 B
C++

#ifndef _CBSGETUP
#define _CBSGETUP
#include "MetroidPrime/BodyState/CBodyState.hpp"
class CBSGetup : public CBodyState {
public:
CBSGetup();
~CBSGetup();
void Start(CBodyController& bc, CStateManager& mgr) override;
pas::EAnimationState UpdateBody(float dt, CBodyController& bc, CStateManager& mgr) override;
void Shutdown(CBodyController& bc) override;
private:
pas::EFallState x4_fallState;
pas::EAnimationState GetBodyStateTransition(float dt, CBodyController& bc);
};
#endif // _CBSGETUP