#pragma once #include #include "FontLoader.h" namespace Nuake { class FontManager { private: static std::map > m_Fonts; public: static Ref GetFont(const std::string& font); }; }