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