mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-26 03:38:55 +01:00
driver: Refactoring: Reorder functions
This commit is contained in:
parent
19333c51e4
commit
5ad9868d85
@ -36,18 +36,22 @@ type UI interface {
|
||||
RunWithoutMainLoop(context UIContext)
|
||||
|
||||
DeviceScaleFactor() float64
|
||||
CursorMode() CursorMode
|
||||
IsFullscreen() bool
|
||||
IsFocused() bool
|
||||
IsRunnableOnUnfocused() bool
|
||||
IsVsyncEnabled() bool
|
||||
ScreenSizeInFullscreen() (int, int)
|
||||
IsScreenTransparent() bool
|
||||
|
||||
CursorMode() CursorMode
|
||||
SetCursorMode(mode CursorMode)
|
||||
|
||||
IsFullscreen() bool
|
||||
SetFullscreen(fullscreen bool)
|
||||
|
||||
IsRunnableOnUnfocused() bool
|
||||
SetRunnableOnUnfocused(runnableOnUnfocused bool)
|
||||
|
||||
IsVsyncEnabled() bool
|
||||
SetVsyncEnabled(enabled bool)
|
||||
|
||||
IsScreenTransparent() bool
|
||||
SetScreenTransparent(transparent bool)
|
||||
|
||||
Input() Input
|
||||
|
Loading…
Reference in New Issue
Block a user