9 lines
126 B
Plaintext
9 lines
126 B
Plaintext
![]() |
package org.musicpd;
|
||
|
|
||
|
interface IMainCallback
|
||
|
{
|
||
|
void onStarted();
|
||
|
void onStopped();
|
||
|
void onError(String error);
|
||
|
}
|