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