Files
Seele/src/Engine/Asset/MeshAsset.cpp
T

30 lines
411 B
C++
Raw Normal View History

2020-06-02 11:46:18 +02:00
#include "MeshAsset.h"
#include "Graphics/Mesh.h"
using namespace Seele;
MeshAsset::MeshAsset()
{
}
2020-06-08 01:44:47 +02:00
2020-06-02 11:46:18 +02:00
MeshAsset::MeshAsset(const std::string& directory, const std::string& name)
: Asset(directory, name)
{
}
2020-06-08 01:44:47 +02:00
MeshAsset::MeshAsset(const std::filesystem::path& fullPath)
2020-06-02 11:46:18 +02:00
: Asset(fullPath)
{
2020-06-08 01:44:47 +02:00
}
MeshAsset::~MeshAsset()
{
}
void MeshAsset::save()
{
//TODO:
}
void MeshAsset::load()
{
//TODO:
2020-06-02 11:46:18 +02:00
}