Maths functions scripting api
This commit is contained in:
21
Nuake/src/Resource/MaterialCollection.h
Normal file
21
Nuake/src/Resource/MaterialCollection.h
Normal 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)
|
||||
{
|
||||
|
||||
}
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user