start to add Music Player code

This commit is contained in:
cuu
2023-01-14 07:22:56 +00:00
parent 657e89dd58
commit 5b5cb5e39f
6 changed files with 408 additions and 0 deletions

View File

@@ -21,6 +21,7 @@ import (
"github.com/clockworkpi/LauncherGoDev/Menu/GameShell/10_Settings"
"github.com/clockworkpi/LauncherGoDev/Menu/GameShell/21_Warehouse"
"github.com/clockworkpi/LauncherGoDev/Menu/GameShell/97_MusicPlayer"
"github.com/clockworkpi/LauncherGoDev/Menu/GameShell/98_TinyCloud"
"github.com/clockworkpi/LauncherGoDev/Menu/GameShell/99_PowerOFF"
@@ -31,6 +32,7 @@ var (
UIPluginList = []*UI.UIPlugin{
&UI.UIPlugin{1, "", "Menu/GameShell/10_Settings", "Settings", &Settings.APIOBJ},
&UI.UIPlugin{1, "", "Menu/GameShell/21_Warehouse", "Warehouse", &Warehouse.APIOBJ},
&UI.UIPlugin{1, "", "Menu/GameShell/97_MusicPlayer", "Music Player", &MusicPlayer.APIOBJ},
&UI.UIPlugin{1, "", "Menu/GameShell/98_TinyCloud", "TinyCloud", &TinyCloud.APIOBJ},
&UI.UIPlugin{1, "", "Menu/GameShell/99_PowerOFF", "PowerOFF", &PowerOFF.APIOBJ},
}