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-12-07 19:30:43 -10:00

17 lines
382 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);
};
} // namespace urde