just fill up the pages code,not test yet

This commit is contained in:
cuu
2018-06-13 19:56:24 +08:00
parent f8aaab26fa
commit 39732c6221
4 changed files with 669 additions and 1 deletions

21
sysgo/UI/plugin.go Normal file
View File

@@ -0,0 +1,21 @@
package UI
type PluginInterface {
Init(screen *MainScreen)
Run(screen *MainScreen)
}
type Plugin struct {
}
func (self *Plugin) Init( screen *MainScreen) {
}
func (self *Plugin) Run( screen *MainScreen) {
}