mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-13 08:18:21 -05:00
Add base for menu eventhandlerset parsing
This commit is contained in:
@ -0,0 +1,17 @@
|
||||
#include "CommonEventHandlerSetLocalVar.h"
|
||||
|
||||
using namespace menu;
|
||||
|
||||
CommonEventHandlerSetLocalVar::CommonEventHandlerSetLocalVar()
|
||||
= default;
|
||||
|
||||
CommonEventHandlerSetLocalVar::CommonEventHandlerSetLocalVar(std::string varName, std::unique_ptr<ICommonExpression> value)
|
||||
: m_var_name(std::move(varName)),
|
||||
m_value(std::move(value))
|
||||
{
|
||||
}
|
||||
|
||||
CommonEventHandlerElementType CommonEventHandlerSetLocalVar::GetType()
|
||||
{
|
||||
return CommonEventHandlerElementType::SET_LOCAL_VAR;
|
||||
}
|
Reference in New Issue
Block a user