prime/include/MetroidPrime/ScriptObjects/CScriptControllerAction.hpp
Henrique Gemignani Passos Lima a0f60b1db3 Add almost matched CScriptControllerAction
Former-commit-id: 5ba677a41bf2ab7da7e38825df6b8469f84e09df
2022-11-03 13:35:43 +02:00

25 lines
730 B
C++

#ifndef _CSCRIPTCONTROLLERACTION
#define _CSCRIPTCONTROLLERACTION
#include "MetroidPrime/CEntity.hpp"
#include "MetroidPrime/CControlMapper.hpp"
class CScriptControllerAction : public CEntity {
ControlMapper::ECommands x34_command;
uint x38_mapScreenSubaction;
bool x3c_24_mapScreenResponse : 1;
bool x3c_25_deactivateOnClose : 1;
bool x3c_26_pressed : 1;
public:
CScriptControllerAction(TUniqueId uid, const rstl::string& name, const CEntityInfo& info,
bool active, ControlMapper::ECommands command, bool b1, uint w1, bool b2);
~CScriptControllerAction();
void Accept(IVisitor& visitor) override;
void Think(float, CStateManager&) override;
};
#endif // _CSCRIPTCONTROLLERACTION