Merge branch 'player' into dev

This commit is contained in:
2025-03-30 00:47:34 -05:00
7 changed files with 218 additions and 26 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 136 KiB

+1 -1
View File
@@ -7,4 +7,4 @@ export function ChangeState(arg1:player.PlayerState):Promise<void>;
export function Init(arg1:context.Context):Promise<void>;
export function Play():Promise<void>;
export function Play(arg1:string):Promise<void>;
+2 -2
View File
@@ -10,6 +10,6 @@ export function Init(arg1) {
return window['go']['player']['Player']['Init'](arg1);
}
export function Play() {
return window['go']['player']['Player']['Play']();
export function Play(arg1) {
return window['go']['player']['Player']['Play'](arg1);
}