summaryrefslogtreecommitdiff
path: root/Userland/Games/2048/GameWindow.gml
diff options
context:
space:
mode:
authorimplicitfield <114500360+implicitfield@users.noreply.github.com>2022-10-17 20:03:09 +0300
committerLinus Groh <mail@linusgroh.de>2022-10-17 22:40:52 +0200
commit5d77daebf3afac9437f5afb13fb64eb0a654aa5b (patch)
tree8b658679f7cb6b1dced8918c5b6bc8db68d15e93 /Userland/Games/2048/GameWindow.gml
parenta6ba82fc4907891082846227a525f7c5684df2c0 (diff)
downloadserenity-5d77daebf3afac9437f5afb13fb64eb0a654aa5b.zip
2048: Convert to GML
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"
+ }
+ }
+}