summaryrefslogtreecommitdiff
path: root/Userland/Games/Snake/Snake.gml
blob: bbf142cae7d21384d5ff0a3d921dfa6f3b3fe223 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@GUI::Widget {
    layout: @GUI::VerticalBoxLayout {}
    fill_with_background_color: true

    @Snake::Game {
        name: "game"
        fill_with_background_color: true
    }

    @GUI::Statusbar {
        name: "statusbar"
        segment_count: 2
    }
}