2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-12-10 02:35:20 +00:00
|
|
|
|
|
|
|
#include "CEntity.hpp"
|
|
|
|
#include "zeus/CVector3f.hpp"
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
|
|
|
class CScriptPickupGenerator : public CEntity {
|
|
|
|
zeus::CVector3f x34_position;
|
|
|
|
float x40_frequency;
|
|
|
|
float x44_ = 0.f;
|
|
|
|
void sub8015E220();
|
|
|
|
|
2016-12-10 02:35:20 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CScriptPickupGenerator(TUniqueId, std::string_view, const CEntityInfo&, const zeus::CVector3f&, float, bool);
|
2016-12-10 02:35:20 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
void Accept(IVisitor& visitor);
|
|
|
|
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId objId, CStateManager& stateMgr);
|
2016-12-10 02:35:20 +00:00
|
|
|
};
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|