mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-08 22:08:29 -05:00
7 lines
125 B
C++
7 lines
125 B
C++
#include "CustomAction.h"
|
|
|
|
CustomAction::CustomAction(std::string actionName)
|
|
: m_action_name(std::move(actionName))
|
|
{
|
|
}
|