summaryrefslogtreecommitdiff
path: root/Userland/Games/Spider/Spider.gml
blob: 09e29799c29a7d9c8bc7860f07df977ff3494902 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@GUI::Widget {
    fill_with_background_color: true

    layout: @GUI::VerticalBoxLayout {
    }

    @Spider::Game {
        name: "game"
        fill_with_background_color: true
        background_color: "green"
    }

    @GUI::Statusbar {
        name: "statusbar"
        label_count: 3
    }
}