mirror of https://github.com/PrimeDecomp/prime.git
19 lines
453 B
C++
19 lines
453 B
C++
#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);
|
|
|
|
void Accept(IVisitor& visitor) override;
|
|
void AcceptScriptMsg(EScriptObjectMessage, TUniqueId, CStateManager&) override;
|
|
|
|
float GetAffectRadius() const { return xe8_affectRadius; }
|
|
};
|
|
|
|
#endif // _CREPULSOR
|