feat(engine): add geometry class

This commit is contained in:
parker
2025-06-29 20:49:30 +01:00
parent deb237e481
commit 7db66aedeb
9 changed files with 118 additions and 69 deletions

View File

@@ -1,6 +1,7 @@
#pragma once
#include <string>
#include <optional>
#include <string_view>
#include <vector>
#include "Engine/Types.h"
#include <memory>
@@ -17,6 +18,7 @@ namespace enzo{
public:
Attribute(std::string name, ga::AttributeType type);
AttributeType getType();
std::string getName();