2022-04-13 13:01:35 +02:00
|
|
|
#include "FontAsset.h"
|
2023-01-29 18:58:59 +01:00
|
|
|
#include "Graphics/Graphics.h"
|
2022-04-13 13:01:35 +02:00
|
|
|
|
|
|
|
|
using namespace Seele;
|
|
|
|
|
|
|
|
|
|
FontAsset::FontAsset()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FontAsset::FontAsset(const std::string& directory, const std::string& name)
|
|
|
|
|
: Asset(directory, name)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FontAsset::FontAsset(const std::filesystem::path& fullPath)
|
|
|
|
|
: Asset(fullPath)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FontAsset::~FontAsset()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-29 18:58:59 +01:00
|
|
|
void FontAsset::save(Gfx::PGraphics graphics)
|
2022-04-13 13:01:35 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-15 23:45:44 +02:00
|
|
|
|
2023-01-29 18:58:59 +01:00
|
|
|
void FontAsset::load(Gfx::PGraphics graphics)
|
2022-04-13 13:01:35 +02:00
|
|
|
{
|
|
|
|
|
}
|