2022-10-21 12:52:22 +00:00
|
|
|
#ifndef _CREPULSOR
|
|
|
|
#define _CREPULSOR
|
|
|
|
|
|
|
|
#include "MetroidPrime/CActor.hpp"
|
|
|
|
|
|
|
|
class CRepulsor : public CActor {
|
|
|
|
float xe8_affectRadius;
|
|
|
|
|
|
|
|
public:
|
|
|
|
CRepulsor(TUniqueId, bool, const rstl::string&, const CEntityInfo&, const CVector3f&, float);
|
|
|
|
|
2023-02-06 17:01:01 +00:00
|
|
|
void Accept(IVisitor& visitor) override;
|
|
|
|
void AcceptScriptMsg(EScriptObjectMessage, TUniqueId, CStateManager&) override;
|
2022-10-21 12:52:22 +00:00
|
|
|
|
|
|
|
float GetAffectRadius() const { return xe8_affectRadius; }
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _CREPULSOR
|