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:
@@ -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;
|
||||
}
|
Reference in New Issue
Block a user