feat: register parameter list

This commit is contained in:
parker
2025-07-22 21:18:06 +01:00
parent 5bec11dec0
commit b6185f5749
14 changed files with 53 additions and 10 deletions

View File

@@ -1,11 +1,15 @@
#pragma once
#include "Engine/Parameter/Type.h"
namespace enzo::prm
{
class Template
{
Template();
public:
Template(enzo::prm::Type type);
private:
enzo::prm::Type type_;
};