aboutsummaryrefslogtreecommitdiffstats
path: root/src/game.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.c')
-rw-r--r--src/game.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/game.c b/src/game.c
index 2775900..a8c4d4a 100644
--- a/src/game.c
+++ b/src/game.c
@@ -93,6 +93,14 @@ void initGame(Game* game)
(Rectangle){200.0, 200.0, 100.0, 100.0});
addWindowToWindowManager(&game->wm, window);
+ window = createFloatingWindow("test3",
+ (Rectangle){300.0, 300.0, 100.0, 100.0});
+ addWindowToWindowManager(&game->wm, window);
+
+ window = createFloatingWindow("test4",
+ (Rectangle){400.0, 400.0, 100.0, 100.0});
+ addWindowToWindowManager(&game->wm, window);
+
disableGameCursor(game);
}