mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-20 07:45:26 +00:00
More GuiSys classes and fields
This commit is contained in:
21
Runtime/GuiSys/CGuiLogicalEventTrigger.hpp
Normal file
21
Runtime/GuiSys/CGuiLogicalEventTrigger.hpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef __URDE_CGUILOGICALEVENTTRIGGER_HPP__
|
||||
#define __URDE_CGUILOGICALEVENTTRIGGER_HPP__
|
||||
|
||||
#include "CGuiPhysicalMsg.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
|
||||
class CGuiLogicalEventTrigger
|
||||
{
|
||||
CGuiPhysicalMsg x0_msg;
|
||||
int x10_val;
|
||||
bool x14_flag;
|
||||
public:
|
||||
CGuiLogicalEventTrigger(const CGuiPhysicalMsg& msg, int val, bool flag)
|
||||
: x0_msg(msg), x10_val(val), x14_flag(flag) {}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // __URDE_CGUILOGICALEVENTTRIGGER_HPP__
|
||||
Reference in New Issue
Block a user