## Tile.gd # Resource representing a single tile in the map. # Used for storing tile properties such as walkability. class_name Tile extends Resource # Whether this tile can be walked on (used for pathfinding). var is_walkable: bool = false