blob: d5a20e3c1ef7e22b474fd66718b8dc8a1fcedcae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef FONTSIZES_H
#define FONTSIZES_H
struct FontSize
{
static int SIZE5;
static int SIZE6;
static int SIZE7;
static int SIZE8;
static void init();
};
#endif // FONTSIZES_H
|