Files
Nuake-custom/Nuake/src/UI/Font/FontManager.h
Antoine Pilote 0c6ed48bbd Major cleanup.
Moved to namespace
Cleanup includes
2021-07-11 18:56:44 -04:00

16 lines
225 B
C++

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