mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-05 09:47:18 -05:00
16 lines
201 B
Go
16 lines
201 B
Go
|
package ebiten
|
||
|
|
||
|
import (
|
||
|
"image/color"
|
||
|
|
||
|
"github.com/hajimehoshi/ebiten"
|
||
|
)
|
||
|
|
||
|
type surfaceState struct {
|
||
|
x int
|
||
|
y int
|
||
|
mode ebiten.CompositeMode
|
||
|
filter ebiten.Filter
|
||
|
color color.Color
|
||
|
}
|