MrShi
2025-11-10 7e9756e119c3a511b7be25ef38de6c27cc9d524b
1
2
3
4
5
6
7
8
package com.example.datalibrary.deptrum;
 
public interface ISimplePlayer {
 
    public void onPlayStart();
 
    public void onReceiveState(int state);
}