fctom1215
2020-08-27 c4dc1834537d42b9025577761d29b4fe1c7d5053
1
2
3
4
5
6
7
8
package com.anyun.exam.lib.util;
 
public interface SpeakerCallback {
    void PlayInit(boolean ret);
    void PlayStart(String s);
    void PlayDone(String s);
    void PlayError(String s);
}