steel-lord/mapping/tile.go
2019-07-02 23:55:29 -07:00

8 lines
139 B
Go

package mapping
// Tile represents the state of a given location in a GameMap.
type Tile struct {
BlockMovement bool
BlockSight bool
}