feat: working parameter creation

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

View File

@@ -0,0 +1,18 @@
#pragma once
#include "Engine/Parameter/Template.h"
#include "Engine/Types.h"
namespace enzo::prm
{
class Parameter
{
public:
Parameter(Template prmTemplate);
inline bt::floatT evalFloat() const {return floatValue_;}
inline void setFloat(bt::floatT value) {floatValue_ = value;}
private:
Template template_;
bt::floatT floatValue_ = 0;
};
}