stuff-from-scratch/src/rendering/fonts/BasicFontEngine.h
2023-01-17 10:13:25 +00:00

15 lines
344 B
C++

#pragma once
#include "IFontEngine.h"
#include "Image.h"
#include "FontGlyph.h"
class BasicFontEngine : public IFontEngine
{
virtual void initialize(){};
virtual void loadFontFace(const std::filesystem::path& fontFile, float penSize = 16){};
virtual std::unique_ptr<FontGlyph> loadGlyph(unsigned charCode){return nullptr;};
};