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

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

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