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

17 lines
321 B
C++
Raw Normal View History

2020-06-02 11:46:18 +02:00
#include "TextureAsset.h"
#include "Graphics/GraphicsResources.h"
using namespace Seele;
TextureAsset::TextureAsset()
{
}
TextureAsset::TextureAsset(const std::string& directory, const std::string& name)
: Asset(directory, name)
{
}
TextureAsset::TextureAsset(const std::string& fullPath)
: Asset(fullPath)
{
}