diff options
Diffstat (limited to 'src/main/java/soundchan/Commands.java')
-rw-r--r-- | src/main/java/soundchan/Commands.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/main/java/soundchan/Commands.java b/src/main/java/soundchan/Commands.java new file mode 100644 index 0000000..3f96d37 --- /dev/null +++ b/src/main/java/soundchan/Commands.java @@ -0,0 +1,14 @@ +package soundchan; + +/** + * An enum representing the possible commands SoundChan might receive + */ +public enum Commands { + play, + volume, + pause, + unpause, + skip, + list, + playingnow +} |