mirror of
https://github.com/clockworkpi/LauncherGoDev.git
synced 2025-12-12 16:08:52 +01:00
33 lines
304 B
Go
33 lines
304 B
Go
package main
|
|
|
|
import (
|
|
"../../UI"
|
|
)
|
|
|
|
type HelloWorldPage struct {
|
|
UI.Page
|
|
}
|
|
|
|
|
|
|
|
|
|
type HelloWorldPlugin struct {
|
|
UI.Plugin
|
|
}
|
|
|
|
|
|
func (self *HelloWorldPlugin) Init( main_screen *UI.MainScreen ) {
|
|
|
|
}
|
|
|
|
func (self *HelloWorldPlugin) Run( main_screen *UI.MainScreen ) {
|
|
|
|
}
|
|
|
|
var APIOBJ HelloWorldPlugin
|
|
|
|
|
|
|
|
|
|
|