mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 16:15:43 +00:00
8 lines
222 B
C++
8 lines
222 B
C++
#include "CustomAction.h"
|
|
|
|
CustomAction::CustomAction(std::string actionName, std::vector<DataDefinition*> parameterTypes)
|
|
: m_action_name(std::move(actionName)),
|
|
m_parameter_types(std::move(parameterTypes))
|
|
{
|
|
}
|