This commit is contained in:
Maurice Grönwoldt 2020-06-13 10:56:20 +02:00
commit 26a2935e1c
52 changed files with 1513 additions and 107 deletions

25
Source/Veno/Fonts/Fonts.h Normal file
View file

@ -0,0 +1,25 @@
//
// 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