Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
path: root/src/ui/ui.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/ui.h')
-rw-r--r--src/ui/ui.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ui/ui.h b/src/ui/ui.h
index 5195cbd..b3b2259 100644
--- a/src/ui/ui.h
+++ b/src/ui/ui.h
@@ -7,6 +7,7 @@
#ifndef __INCLUDED_UI_H__
#define __INCLUDED_UI_H__
+#include "ui/font.h"
#include "ui/palette.h"
#include "ui/widget.h"
#include "ui/window.h"
@@ -59,7 +60,10 @@ protected:
virtual void remove_window(Window *window);
private:
- Palette ui_palette;
+ Palette *ui_palette;
+ Font *ui_font_small;
+ Font *ui_font_medium;
+ Font *ui_font_large;
Window *ui_active_window;
Widget *ui_focus;