2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-09-08 09:47:26 +00:00

Add Tests for ZCG cpp

This commit is contained in:
Jan
2021-02-10 18:03:50 +01:00
parent 31497d804c
commit f9ef7cc35b
102 changed files with 502 additions and 21 deletions

View File

@@ -0,0 +1,6 @@
#include "CustomAction.h"
CustomAction::CustomAction(std::string actionName)
: m_action_name(std::move(actionName))
{
}

View File

@@ -0,0 +1,15 @@
#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;
explicit CustomAction(std::string actionName);
};