metaforce/Runtime/World/CScriptSteam.hpp

29 lines
729 B
C++
Raw Normal View History

2018-10-07 03:42:33 +00:00
#pragma once
2017-02-28 07:31:14 +00:00
#include "CScriptTrigger.hpp"
namespace urde
{
class CScriptSteam : public CScriptTrigger
{
2018-09-20 18:17:09 +00:00
bool x150_;
CAssetId x154_texture;
float x158_;
float x15c_alphaInDur;
float x160_alphaOutDur;
float x164_ = 0.f;
float x168_ = 0.f;
2017-02-28 07:31:14 +00:00
public:
2017-11-13 06:19:18 +00:00
CScriptSteam(TUniqueId, std::string_view name, const CEntityInfo& info, const zeus::CVector3f& pos,
2017-02-28 07:31:14 +00:00
const zeus::CAABox&, const CDamageInfo& dInfo, const zeus::CVector3f& orientedForce,
2017-08-13 05:26:14 +00:00
ETriggerFlags flags, bool active, CAssetId, float, float, float, float, bool);
2018-09-20 18:17:09 +00:00
void Accept(IVisitor&);
void AcceptScriptMsg(EScriptObjectMessage, TUniqueId, CStateManager&);
void Think(float, CStateManager&);
2017-02-28 07:31:14 +00:00
};
}