8 lines
139 B
Go
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
|
||
|
}
|
||
|
|