mirror of
https://github.com/clockworkpi/LauncherGoDev.git
synced 2025-12-12 16:08:52 +01:00
22 lines
222 B
Go
22 lines
222 B
Go
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) {
|
|
|
|
}
|