Henrique Gemignani Passos Lima 0f990300fd Add CBSGenerate
Former-commit-id: 368fff5a2ee6edbbba88eab8c4526b7a5f3c37ef
2022-10-25 22:35:44 +03:00

20 lines
495 B
C++

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