feat(parms): add template and type

This commit is contained in:
2025-07-22 18:45:00 +01:00
committed by parker
parent 7e9523aa77
commit 5bec11dec0
5 changed files with 32 additions and 0 deletions

View File

@@ -20,6 +20,7 @@ set(ENGINE_SOURCES
src/Engine/Operator/GeometryOpDef.cpp
src/Engine/Operator/OperatorTable.cpp
src/Engine/Operator/Context.cpp
src/Engine/Parameter/Template.cpp
src/Engine/Network/NetworkManager.cpp
)

View File

@@ -0,0 +1,7 @@
#include "Engine/Parameter/Template.h"
enzo::prm::Template::Template()
{
}

View File

@@ -0,0 +1,13 @@
#pragma once
namespace enzo::prm
{
class Template
{
Template();
};
}

View File

View File

@@ -0,0 +1,11 @@
#pragma once
namespace enzo::prm
{
class Type
{
};
}