diff options
| author | nathan <nathansmith@disroot.org> | 2025-11-17 04:19:01 +0000 |
|---|---|---|
| committer | nathan <nathansmith@disroot.org> | 2025-11-17 04:19:01 +0000 |
| commit | fe39cc897fbc8d8470d790df5306550c841d95d4 (patch) | |
| tree | 97243f3c23a471000163fc9e157bb145f5d92536 /src/game.c | |
| parent | 7bb57d60f8d8249eb48c9c7a7e7d3760127a0c3c (diff) | |
| download | FindThings-fe39cc897fbc8d8470d790df5306550c841d95d4.tar.gz FindThings-fe39cc897fbc8d8470d790df5306550c841d95d4.tar.bz2 FindThings-fe39cc897fbc8d8470d790df5306550c841d95d4.zip | |
Window focus stuff
Diffstat (limited to 'src/game.c')
| -rw-r--r-- | src/game.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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); } |
