12 lines
213 B
GDScript3
Raw Normal View History

2026-04-13 11:34:00 -05:00
class_name Tile extends Control
signal tile_selected(tile: Tile)
var highlighted: bool = false
func handle_mouse_entered() -> void:
highlighted = true
func handle_mouse_exited() -> void:
highlighted = false