metaforce/Runtime/World/CRepulsor.hpp

21 lines
488 B
C++
Raw Normal View History

2016-12-22 02:48:22 +00:00
#ifndef __URDE_CREPULSOR_HPP__
#define __URDE_CREPULSOR_HPP__
#include "CActor.hpp"
namespace urde
{
class CRepulsor : public CActor
{
float xe8_affectRadius;
public:
2017-11-13 06:19:18 +00:00
CRepulsor(TUniqueId, bool, std::string_view, const CEntityInfo&, const zeus::CVector3f&, float);
2016-12-22 02:48:22 +00:00
2017-01-15 03:07:01 +00:00
void Accept(IVisitor& visitor);
2016-12-22 02:48:22 +00:00
void AcceptScriptMsg(EScriptObjectMessage, TUniqueId, CStateManager&);
float GetAffectRadius() const { return xe8_affectRadius; }
};
}
#endif // __URDE_CREPULSOR_HPP__