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"
|
|
|
|
|
2020-06-13 16:52:16 +02:00
|
|
|
class VenoFonts
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
static VenoFonts* instance;
|
|
|
|
Font* lcdFont;
|
|
|
|
Font* arvo;
|
2020-06-13 10:56:20 +02:00
|
|
|
public:
|
2020-06-13 16:52:16 +02:00
|
|
|
VenoFonts ();
|
|
|
|
~VenoFonts ();
|
|
|
|
static void destroyAll ();
|
|
|
|
static Font* getLCD ();
|
|
|
|
static Font* getNormal ();
|
|
|
|
static VenoFonts* getInstance ();
|
2020-06-13 10:56:20 +02:00
|
|
|
};
|
|
|
|
#endif //VENO_FONTS_H
|