blob: 3f96d37f32c81c5749f9459297b03c345d3d1c7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package soundchan;
/**
* An enum representing the possible commands SoundChan might receive
*/
public enum Commands {
play,
volume,
pause,
unpause,
skip,
list,
playingnow
}
|