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

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

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