mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-19 10:56:07 -05: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
|
|
}
|