2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2018-05-08 02:18:18 +00:00
|
|
|
|
|
|
|
#include "CEntity.hpp"
|
|
|
|
#include "zeus/CVector3f.hpp"
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
|
|
|
class CScriptRipple : public CEntity {
|
|
|
|
float x34_magnitude;
|
|
|
|
zeus::CVector3f x38_center;
|
|
|
|
|
2018-05-08 02:18:18 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CScriptRipple(TUniqueId, std::string_view, const CEntityInfo&, const zeus::CVector3f&, bool, float);
|
2018-05-08 02:18:18 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void Accept(IVisitor&);
|
|
|
|
void Think(float, CStateManager&) {}
|
|
|
|
void AcceptScriptMsg(EScriptObjectMessage, TUniqueId, CStateManager&);
|
2018-05-08 02:18:18 +00:00
|
|
|
};
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|