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

11 lines
254 B
Plaintext

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;
}
}
}