metaforce/Runtime/World/CFishCloudModifier.hpp

22 lines
516 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2018-05-07 00:52:35 +00:00
#include "CActor.hpp"
2018-12-08 05:30:43 +00:00
namespace urde {
class CFishCloudModifier : public CActor {
float xe8_;
float xec_;
bool xf0_isRepulsor;
bool xf1_;
2018-05-07 00:52:35 +00:00
public:
2018-12-08 05:30:43 +00:00
CFishCloudModifier(TUniqueId, bool, std::string_view, const CEntityInfo&, const zeus::CVector3f&, bool, bool, float,
float);
void Accept(IVisitor& visitor);
void AcceptScriptMsg(EScriptObjectMessage, TUniqueId, CStateManager&);
2018-05-07 00:52:35 +00:00
2018-12-08 05:30:43 +00:00
void AddSelf(CStateManager&);
void RemoveSelf(CStateManager&);
2018-05-07 00:52:35 +00:00
};
2018-12-08 05:30:43 +00:00
} // namespace urde