mirror of
https://github.com/mvvasilev/last_light.git
synced 2025-04-19 12:49:52 +03:00
13 lines
157 B
Go
13 lines
157 B
Go
|
package model
|
||
|
|
||
|
import (
|
||
|
"mvvasilev/last_light/util"
|
||
|
)
|
||
|
|
||
|
type Map interface {
|
||
|
Size() util.Size
|
||
|
SetTileAt(x, y int, t Tile)
|
||
|
TileAt(x, y int) Tile
|
||
|
Tick()
|
||
|
}
|