mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-10-31 16:27:18 -04:00
10 lines
142 B
Go
10 lines
142 B
Go
package d2mapengine
|
|
|
|
import "github.com/hajimehoshi/ebiten"
|
|
|
|
type TileCacheRecord struct {
|
|
Image *ebiten.Image
|
|
XOffset int
|
|
YOffset int
|
|
}
|