prime/include/MetroidPrime/BodyState/CBSSlide.hpp

24 lines
536 B
C++
Raw Normal View History

2022-10-24 23:29:11 +00:00
#ifndef _CBSSLIDE
#define _CBSSLIDE
#include "MetroidPrime/BodyState/CBodyState.hpp"
class CBSSlide : public CBodyState {
pas::EAnimationState GetBodyStateTransition(float dt, CBodyController& bc);
public:
CBSSlide();
~CBSSlide();
bool ApplyHeadTracking() const;
bool IsMoving() const;
void Start(CBodyController& bc, CStateManager& mgr);
pas::EAnimationState UpdateBody(float dt, CBodyController& bc, CStateManager& mgr);
void Shutdown(CBodyController&);
2022-10-24 23:29:11 +00:00
private:
float x4_rotateSpeed;
};
#endif // _CBSSLIDE