2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-09-03 23:37:26 +00:00
Files
OpenAssetTools/src/ObjLoading/Parsing/Menu/Domain/EventHandler/CommonEventHandlerScript.cpp
2023-11-19 21:07:21 +00:00

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;
}