steel-lord/mapping/tile.go
2019-07-12 13:46:26 -07:00

7 lines
138 B
Go

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