Luke Street 9b99045882 Revert override removal
Former-commit-id: b6ddfcfc35003362c7941be708c17a560f822f1c
2023-02-06 12:01:01 -05:00

23 lines
490 B
C++

#ifndef _CBSDIE
#define _CBSDIE
#include "MetroidPrime/BodyState/CBodyState.hpp"
class CBSDie : public CBodyState {
public:
CBSDie();
~CBSDie();
bool IsDead() const override;
bool IsDying() const override;
void Start(CBodyController& bc, CStateManager& mgr) override;
pas::EAnimationState UpdateBody(float dt, CBodyController& bc, CStateManager& mgr) override;
void Shutdown(CBodyController&) override;
private:
float x4_remTime;
bool x8_isDead;
};
#endif // _CBSDIE