mirror of https://github.com/AxioDL/metaforce.git
22 lines
516 B
C++
22 lines
516 B
C++
#pragma once
|
|
|
|
#include "CActor.hpp"
|
|
|
|
namespace urde {
|
|
class CFishCloudModifier : public CActor {
|
|
float xe8_;
|
|
float xec_;
|
|
bool xf0_isRepulsor;
|
|
bool xf1_;
|
|
|
|
public:
|
|
CFishCloudModifier(TUniqueId, bool, std::string_view, const CEntityInfo&, const zeus::CVector3f&, bool, bool, float,
|
|
float);
|
|
void Accept(IVisitor& visitor);
|
|
void AcceptScriptMsg(EScriptObjectMessage, TUniqueId, CStateManager&);
|
|
|
|
void AddSelf(CStateManager&);
|
|
void RemoveSelf(CStateManager&);
|
|
};
|
|
} // namespace urde
|