2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-09-07 09:17:26 +00:00

Add base for menu eventhandlerset parsing

This commit is contained in:
Jan
2021-11-06 16:28:24 +01:00
parent b15efd4a4c
commit bf19208351
19 changed files with 334 additions and 46 deletions

View File

@@ -0,0 +1,16 @@
#include "CommonEventHandlerScript.h"
using namespace menu;
CommonEventHandlerScript::CommonEventHandlerScript()
= default;
CommonEventHandlerScript::CommonEventHandlerScript(std::string script)
: m_script(std::move(script))
{
}
CommonEventHandlerElementType CommonEventHandlerScript::GetType()
{
return CommonEventHandlerElementType::SCRIPT;
}