mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-18 02:16:23 -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
|
||
|
}
|