WIP
This commit is contained in:
parent
d735c1d076
commit
26a2935e1c
52 changed files with 1513 additions and 107 deletions
25
Source/Veno/Fonts/Fonts.h
Normal file
25
Source/Veno/Fonts/Fonts.h
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue