2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 21:51:22 +00:00
metaforce/Runtime/World/CScriptSwitch.hpp
2018-10-06 17:42:33 -10:00

18 lines
373 B
C++

#pragma once
#include "CEntity.hpp"
namespace urde
{
class CScriptSwitch : public CEntity
{
bool x34_opened;
bool x35_closeOnOpened;
public:
CScriptSwitch(TUniqueId, std::string_view, const CEntityInfo&, bool, bool, bool);
void Accept(IVisitor& visitor);
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId objId, CStateManager &stateMgr);
};
}