reVeno/Source/Veno/Fonts/Fonts.h

26 lines
644 B
C
Raw Normal View History

2020-06-13 10:56:20 +02:00
//
// Created by versustune on 19.01.20.
//
#ifndef VENO_FONTS_H
#define VENO_FONTS_H
#include "JuceHeader.h"
class VenoFonts {
public:
static const Font &getLCD() {
static Font lcd(Font(Typeface::createSystemTypefaceFor(BinaryData::lcd_ttf,
BinaryData::lcd_ttfSize)));
return lcd;
}
static const Font &getNormal() {
static Font arvo(Font(Typeface::createSystemTypefaceFor(BinaryData::arvo_ttf,
BinaryData::arvo_ttfSize)));
return arvo;
}
};
#endif //VENO_FONTS_H