reVeno/Source/Veno/Fonts/Fonts.h

26 lines
468 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
{
protected:
static VenoFonts* instance;
Font* lcdFont;
Font* arvo;
2020-07-09 16:31:33 +02:00
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (VenoFonts)
2020-06-13 10:56:20 +02:00
public:
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