Maths functions scripting api

This commit is contained in:
antopilo
2021-09-13 06:47:05 -04:00
parent 4f93cb4395
commit a047032f86
5 changed files with 108 additions and 13 deletions

View File

@@ -0,0 +1,21 @@
#pragma once
#include "src/Core/Core.h"
#include "src/Rendering/Materials/Material.h"
#include <vector>
namespace Nuake {
class MaterialCollection
{
private:
std::vector<Ref<Material>> m_Materials;
public:
std::string Path;
MaterialCollection(const std::string path)
{
}
};
}