2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-20 02:35:27 +00:00

Frame and Widget imps

This commit is contained in:
Jack Andersen
2016-03-13 14:58:19 -10:00
parent a6f412b390
commit aa207d3e5f
26 changed files with 502 additions and 70 deletions

View File

@@ -9,11 +9,13 @@ namespace urde
class CGuiLogicalEventTrigger
{
CGuiPhysicalMsg x0_msg;
int x10_val;
int x10_triggerId;
bool x14_flag;
public:
CGuiLogicalEventTrigger(const CGuiPhysicalMsg& msg, int val, bool flag)
: x0_msg(msg), x10_val(val), x14_flag(flag) {}
: x0_msg(msg), x10_triggerId(val), x14_flag(flag) {}
const CGuiPhysicalMsg& GetPhysicalMsg() const {return x0_msg;}
int GetTriggerId() const {return x10_triggerId;}
};
}