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:
@@ -0,0 +1,6 @@
|
||||
#include "CustomAction.h"
|
||||
|
||||
CustomAction::CustomAction(std::string actionName)
|
||||
: m_action_name(std::move(actionName))
|
||||
{
|
||||
}
|
15
src/ZoneCodeGeneratorLib/Domain/Extension/CustomAction.h
Normal file
15
src/ZoneCodeGeneratorLib/Domain/Extension/CustomAction.h
Normal 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);
|
||||
};
|
Reference in New Issue
Block a user