mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
31 lines
507 B
Go
31 lines
507 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 UI interface {
|
|
PollEvents()
|
|
CreateWindow(screenWidth, screenHeight, screenScale int, title string) Window
|
|
}
|
|
|
|
type WindowEvents interface {
|
|
ScreenSizeUpdated() <-chan ScreenSizeUpdatedEvent
|
|
InputStateUpdated() <-chan InputStateUpdatedEvent
|
|
}
|
|
|
|
type Window interface {
|
|
Draw(func(graphics.Canvas))
|
|
WindowEvents
|
|
}
|