Loading logic moved to Asset classes

This commit is contained in:
Dynamitos
2020-06-08 01:44:47 +02:00
parent 356e6058fe
commit ab4a3b5e23
50 changed files with 966 additions and 558 deletions
+14 -1
View File
@@ -7,11 +7,24 @@ using namespace Seele;
MeshAsset::MeshAsset()
{
}
MeshAsset::MeshAsset(const std::string& directory, const std::string& name)
: Asset(directory, name)
{
}
MeshAsset::MeshAsset(const std::string& fullPath)
MeshAsset::MeshAsset(const std::filesystem::path& fullPath)
: Asset(fullPath)
{
}
MeshAsset::~MeshAsset()
{
}
void MeshAsset::save()
{
//TODO:
}
void MeshAsset::load()
{
//TODO:
}