library/src/FontType.hpp

17 lines
248 B
C++

#ifndef LIBRARY_FONT_H
#define LIBRARY_FONT_H
namespace vkvm {
enum FontType {
FuturisticBlack = 1,
//TODO(julian): find name of this font
NoNameFound = 2,
ProFontIIX = 3,
Unifont = 4
};
}
#endif