1
0
Fork 0
slint-memory-game/src/components/main_window.slint

11 lines
254 B
Plaintext
Raw Normal View History

2023-05-03 13:54:11 -04:00
import { MemoryTile } from "./memory_tile.slint";
export component MainWindow inherits Window {
MemoryTile {
icon: @image-url("../../icons/bus.png");
clicked => {
self.open_curtain = !self.open_curtain;
}
}
}