duncgibbs cb0c6e18f5
Some checks failed
linting & formatting / build (push) Failing after 22s
creates all initial tiles and buildings
2026-04-15 10:45:43 -05:00

15 lines
248 B
GDScript

class_name Tile extends Control
@warning_ignore("unused_signal")
signal tile_selected(tile: Tile)
var highlighted: bool = false
func handle_mouse_entered() -> void:
highlighted = true
func handle_mouse_exited() -> void:
highlighted = false