mirror of https://github.com/AxioDL/metaforce.git
20 lines
501 B
C++
20 lines
501 B
C++
#pragma once
|
|
|
|
#include "CEntity.hpp"
|
|
#include "zeus/CVector3f.hpp"
|
|
|
|
namespace urde {
|
|
class CScriptPickupGenerator : public CEntity {
|
|
zeus::CVector3f x34_position;
|
|
float x40_frequency;
|
|
float x44_ = 0.f;
|
|
void sub8015E220();
|
|
|
|
public:
|
|
CScriptPickupGenerator(TUniqueId, std::string_view, const CEntityInfo&, const zeus::CVector3f&, float, bool);
|
|
|
|
void Accept(IVisitor& visitor);
|
|
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId objId, CStateManager& stateMgr);
|
|
};
|
|
} // namespace urde
|