mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-08 22:08:29 -05:00
16 lines
301 B
C++
16 lines
301 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "Domain/Definition/DataDefinition.h"
|
|
|
|
class CustomAction
|
|
{
|
|
public:
|
|
std::string m_action_name;
|
|
std::vector<DataDefinition*> m_parameter_types;
|
|
|
|
CustomAction(std::string actionName, std::vector<DataDefinition*> parameterTypes);
|
|
};
|