yy1717
2020-05-22 88c323337b1b196dd3098c14c30de5725a21c4d3
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);
}