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

    layout: @GUI::VerticalBoxLayout {
    }

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

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