feat: working parameter creation

This commit is contained in:
parker
2025-07-23 16:57:27 +01:00
parent 52548a3d58
commit c08fd4e7e8
14 changed files with 89 additions and 34 deletions

View File

@@ -8,6 +8,9 @@ class Template
{
public:
Template(enzo::prm::Type type, const char* name);
Template();
const char* getName() const;
bool isValid() const;
private:
enzo::prm::Type type_;
// TODO: make a class that holds token and name
@@ -15,5 +18,7 @@ private:
};
inline enzo::prm::Template Terminator = enzo::prm::Template();
}