ui: Organize members

This commit is contained in:
Hajime Hoshi 2018-01-03 00:23:18 +09:00
parent 9478801076
commit 9578307d7b

View File

@ -36,19 +36,24 @@ type userInterface struct {
width int width int
windowWidth int windowWidth int
height int height int
scale float64 scale float64
cachedDeviceScale float64 cachedDeviceScale float64
cachedGLFWScale float64 cachedGLFWScale float64
fullscreenScale float64 fullscreenScale float64
funcs chan func()
running bool running bool
sizeChanged bool sizeChanged bool
origPosX int origPosX int
origPosY int origPosY int
runnableInBackground bool
initFullscreen bool initFullscreen bool
initCursorVisible bool initCursorVisible bool
initIconImages []image.Image initIconImages []image.Image
runnableInBackground bool
funcs chan func()
m sync.Mutex m sync.Mutex
} }