Formatted EVERYTHING

This commit is contained in:
Dynamitos
2024-06-09 12:20:53 +02:00
parent f18bf8acbe
commit d95dab850c
265 changed files with 8002 additions and 12310 deletions
+8 -9
View File
@@ -1,24 +1,23 @@
#pragma once
#include "MinimalEngine.h"
#include "Containers/List.h"
#include "MinimalEngine.h"
#include <filesystem>
namespace Seele
{
namespace Seele {
DECLARE_REF(FontAsset)
DECLARE_NAME_REF(Gfx, Graphics)
struct FontImportArgs
{
struct FontImportArgs {
std::filesystem::path filePath;
std::string importPath;
};
class FontLoader
{
public:
class FontLoader {
public:
FontLoader(Gfx::PGraphics graphic);
~FontLoader();
void importAsset(FontImportArgs args);
private:
private:
void import(FontImportArgs args, PFontAsset asset);
Gfx::PGraphics graphics;
};