From 3bc325f7d249cd25002f32ba8b516c7644d8c506 Mon Sep 17 00:00:00 2001 From: Brandon Date: Sat, 14 Apr 2018 13:43:39 -0400 Subject: Split up commands to enum --- src/main/java/soundchan/Commands.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/main/java/soundchan/Commands.java (limited to 'src/main/java/soundchan/Commands.java') 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 +} -- cgit v1.2.3