20 lines
487 B
C++
20 lines
487 B
C++
// Jakob Falke, oostubs
|
|
// Github: https://gitlab.cs.fau.de/um15ebek/oostubs
|
|
|
|
// vim: set et ts=4 sw=4:
|
|
|
|
#include "Fonts.h"
|
|
#include "Font_8x16.h"
|
|
#include "Font_8x8.h"
|
|
#include "Font_acorn_8x8.h"
|
|
#include "Font_pearl_8x8.h"
|
|
#include "Font_sun_12x22.h"
|
|
#include "Font_sun_8x16.h"
|
|
|
|
const Font_8x16 std_font_8x16;
|
|
const Font_8x8 std_font_8x8;
|
|
const Font_acorn_8x8 acorn_font_8x8;
|
|
const Font_pearl_8x8 pearl_font_8x8;
|
|
const Font_sun_12x22 sun_font_12x22;
|
|
const Font_sun_8x16 sun_font_8x16;
|