metaforce/Runtime/World/CScriptSteam.hpp

31 lines
846 B
C++
Raw Permalink Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2017-02-27 23:31:14 -08:00
#include <string_view>
#include "Runtime/RetroTypes.hpp"
#include "Runtime/World/CScriptTrigger.hpp"
2017-02-27 23:31:14 -08:00
2021-04-10 01:42:06 -07:00
namespace metaforce {
2018-12-07 21:30:43 -08:00
class CScriptSteam : public CScriptTrigger {
bool x150_;
CAssetId x154_texture;
float x158_;
float x15c_alphaInDur;
float x160_alphaOutDur;
float x164_ = 0.f;
float x168_ = 0.f;
2017-02-27 23:31:14 -08:00
public:
2021-05-26 07:00:57 -07:00
DEFINE_ENTITY
2018-12-07 21:30:43 -08:00
CScriptSteam(TUniqueId, std::string_view name, const CEntityInfo& info, const zeus::CVector3f& pos,
const zeus::CAABox&, const CDamageInfo& dInfo, const zeus::CVector3f& orientedForce, ETriggerFlags flags,
bool active, CAssetId, float, float, float, float, bool);
2018-09-20 11:17:09 -07:00
void Accept(IVisitor&) override;
void AcceptScriptMsg(EScriptObjectMessage, TUniqueId, CStateManager&) override;
void Think(float, CStateManager&) override;
2017-02-27 23:31:14 -08:00
};
2021-04-10 01:42:06 -07:00
} // namespace metaforce