ebiten/ui/ui.go
2013-12-07 02:20:53 +09:00

28 lines
439 B
Go

package ui
import (
"github.com/hajimehoshi/go-ebiten/graphics"
)
type ScreenSizeUpdatedEvent struct {
Width int
Height int
}
type InputStateUpdatedEvent struct {
X int
Y int
}
type UIEvents interface {
ScreenSizeUpdated() <-chan ScreenSizeUpdatedEvent
InputStateUpdated() <-chan InputStateUpdatedEvent
}
type UI interface {
PollEvents()
LoadResources(func(graphics.TextureFactory))
Draw(func(graphics.Canvas))
UIEvents
}