summaryrefslogtreecommitdiff
path: root/Userland/Games/2048/GameWindow.gml
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Games/2048/GameWindow.gml')
-rw-r--r--Userland/Games/2048/GameWindow.gml17
1 files changed, 17 insertions, 0 deletions
diff --git a/Userland/Games/2048/GameWindow.gml b/Userland/Games/2048/GameWindow.gml
new file mode 100644
index 0000000000..a928ebbb5d
--- /dev/null
+++ b/Userland/Games/2048/GameWindow.gml
@@ -0,0 +1,17 @@
+@GUI::Frame {
+ fill_with_background_color: true
+ layout: @GUI::VerticalBoxLayout {}
+
+ @GUI::Widget {
+ layout: @GUI::VerticalBoxLayout {}
+
+ @GUI::Widget {
+ name: "board_view_container"
+ layout: @GUI::VerticalBoxLayout {}
+ }
+
+ @GUI::Statusbar {
+ name: "statusbar"
+ }
+ }
+}