1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-11-07 18:57:18 -05:00
OpenDiablo2/d2common/d2interface/scene.go

14 lines
235 B
Go
Raw Normal View History

2019-11-10 03:36:53 -05:00
package d2interface
2019-10-25 20:28:14 -04:00
import (
"github.com/hajimehoshi/ebiten"
)
// Scene defines the function necessary for scene management
type Scene interface {
Load() []func()
Unload()
Render(screen *ebiten.Image)
Update(tickTime float64)
2019-10-25 20:28:14 -04:00
}