try to copy whole design from python gameshell launcher

This commit is contained in:
cuu
2018-06-12 16:59:43 +08:00
parent 7b0b08324c
commit cd4c65ec8a
15 changed files with 629 additions and 0 deletions

20
sysgo/UI/main_screen.go Normal file
View File

@@ -0,0 +1,20 @@
package UI
import (
)
type MainScreen struct {
Pages []interface{}
PageMax int
PageIndex int
PosX int
PosY int
}
func NewMainScreen() *MainScreen {
m := &MainScreen{}
}