mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-09-03 23:37:26 +00:00
16 lines
363 B
C++
16 lines
363 B
C++
#include "CommonEventHandlerScript.h"
|
|
|
|
using namespace menu;
|
|
|
|
CommonEventHandlerScript::CommonEventHandlerScript() = default;
|
|
|
|
CommonEventHandlerScript::CommonEventHandlerScript(std::string script)
|
|
: m_script(std::move(script))
|
|
{
|
|
}
|
|
|
|
CommonEventHandlerElementType CommonEventHandlerScript::GetType() const
|
|
{
|
|
return CommonEventHandlerElementType::SCRIPT;
|
|
}
|