ichigo/engine/tiles.go

17 lines
220 B
Go
Raw Normal View History

2021-07-23 17:05:05 +10:00
package engine
import "github.com/hajimehoshi/ebiten/v2"
type Tilemap struct {
Map [][]int
Src *ebiten.Image
TileSize int
GeoM *ebiten.GeoM
ZPos
}
func (t *Tilemap) Draw(screen *ebiten.Image) {
}