2016-03-11 22:50:15 +00:00
|
|
|
#ifndef __URDE_CGUILOGICALEVENTTRIGGER_HPP__
|
|
|
|
#define __URDE_CGUILOGICALEVENTTRIGGER_HPP__
|
|
|
|
|
|
|
|
#include "CGuiPhysicalMsg.hpp"
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
|
|
|
|
class CGuiLogicalEventTrigger
|
|
|
|
{
|
|
|
|
CGuiPhysicalMsg x0_msg;
|
2016-03-14 00:58:19 +00:00
|
|
|
int x10_triggerId;
|
2016-03-11 22:50:15 +00:00
|
|
|
bool x14_flag;
|
|
|
|
public:
|
|
|
|
CGuiLogicalEventTrigger(const CGuiPhysicalMsg& msg, int val, bool flag)
|
2016-03-14 00:58:19 +00:00
|
|
|
: x0_msg(msg), x10_triggerId(val), x14_flag(flag) {}
|
|
|
|
const CGuiPhysicalMsg& GetPhysicalMsg() const {return x0_msg;}
|
|
|
|
int GetTriggerId() const {return x10_triggerId;}
|
2016-03-11 22:50:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __URDE_CGUILOGICALEVENTTRIGGER_HPP__
|