feat: pass node info with template

This commit is contained in:
parker
2025-07-23 14:06:57 +01:00
parent b6185f5749
commit 52548a3d58
17 changed files with 151 additions and 70 deletions

View File

@@ -7,9 +7,11 @@ namespace enzo::prm
class Template
{
public:
Template(enzo::prm::Type type);
Template(enzo::prm::Type type, const char* name);
private:
enzo::prm::Type type_;
// TODO: make a class that holds token and name
const char* name_;
};