mirror of https://github.com/AxioDL/metaforce.git
21 lines
490 B
C++
21 lines
490 B
C++
#ifndef __URDE_CREPULSOR_HPP__
|
|
#define __URDE_CREPULSOR_HPP__
|
|
|
|
#include "CActor.hpp"
|
|
namespace urde
|
|
{
|
|
class CRepulsor : public CActor
|
|
{
|
|
float xe8_affectRadius;
|
|
|
|
public:
|
|
CRepulsor(TUniqueId, bool, const std::string&, const CEntityInfo&, const zeus::CVector3f&, float);
|
|
|
|
void Accept(IVisitor& visitor);
|
|
void AcceptScriptMsg(EScriptObjectMessage, TUniqueId, CStateManager&);
|
|
|
|
float GetAffectRadius() const { return xe8_affectRadius; }
|
|
};
|
|
}
|
|
#endif // __URDE_CREPULSOR_HPP__
|