Files
ladybird/Userland/Games/MasterWord/MasterWord.gml
Arda Cinar cc5ea3aa4c MasterWord: Display messages in a statusbar
In the "inspiration" for this game, messages are displayed on top of the
game area in case an invalid guess is inputted. After a few seconds,
they disappear. In a similar fashion, a statusbar is created on the game
window and similar messages are outputted there.
2022-12-11 22:10:37 +01:00

14 lines
196 B
Plaintext

@GUI::Widget {
layout: @GUI::VerticalBoxLayout {
spacing: 0
}
@MasterWord::WordGame {
name: "word_game"
}
@GUI::Statusbar {
name: "statusbar"
}
}