library/src/FontType.hpp

16 lines
227 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
};
}
#endif