mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 09:17:19 -04:00
14 lines
293 B
Go
14 lines
293 B
Go
package d2interface
|
|
|
|
import "github.com/hajimehoshi/ebiten"
|
|
|
|
// Drawable represents an instance that can be drawn
|
|
type Drawable interface {
|
|
Draw(target *ebiten.Image)
|
|
GetSize() (width, height uint32)
|
|
MoveTo(x, y int)
|
|
GetLocation() (x, y int)
|
|
GetVisible() bool
|
|
SetVisible(visible bool)
|
|
}
|