aboutsummaryrefslogtreecommitdiffstats
path: root/src/frames
diff options
context:
space:
mode:
Diffstat (limited to 'src/frames')
-rw-r--r--src/frames/loading_frame.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/frames/loading_frame.cpp b/src/frames/loading_frame.cpp
index 3be2af76..31458b7f 100644
--- a/src/frames/loading_frame.cpp
+++ b/src/frames/loading_frame.cpp
@@ -27,6 +27,7 @@
#include "loading_frame.hpp"
#include "menu/frame_background_image.hpp"
#include "menu/frame_background_color.hpp"
+#include "menu/text.hpp"
namespace usdx
{
@@ -39,6 +40,9 @@ namespace usdx
// RgbColor background(100, 100, 100);
// set_background(new FrameBackgroundColor(background));
set_background(new FrameBackgroundImage("game/themes/Deluxe/[bg-load]blue.jpg"));
+
+ DrawableControl *c = new Text(this, "Halloäöüß");
+ c->set_position(100, 100);
}
LoadingFrame::~LoadingFrame()