mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
13 lines
178 B
Go
13 lines
178 B
Go
package ui
|
|
|
|
import (
|
|
"github.com/hajimehoshi/go-ebiten/graphics"
|
|
)
|
|
|
|
type UI interface {
|
|
ScreenWidth() int
|
|
ScreenHeight() int
|
|
ScreenScale() int
|
|
Run(device graphics.Device)
|
|
}
|