steel-lord/mapping/tile.go

7 lines
138 B
Go
Raw Normal View History

2019-07-02 23:55:29 -07:00
package mapping
// Tile represents the state of a given location in a GameMap.
type Tile struct {
BlockMovement bool
BlockSight bool
}