aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/soundchan/Commands.java
diff options
context:
space:
mode:
authorMatt <mattkohls13@gmail.com>2018-04-14 13:46:11 -0400
committerGitHub <noreply@github.com>2018-04-14 13:46:11 -0400
commit18527f7210fffb669da2e48bfe7349060a2e95b5 (patch)
tree681dc836617447d21a9376b702d54824d277047a /src/main/java/soundchan/Commands.java
parente810a9dca5d60c154f9af196105c76ad436b6214 (diff)
parent3bc325f7d249cd25002f32ba8b516c7644d8c506 (diff)
downloadSoundChan-18527f7210fffb669da2e48bfe7349060a2e95b5.tar.gz
SoundChan-18527f7210fffb669da2e48bfe7349060a2e95b5.tar.bz2
SoundChan-18527f7210fffb669da2e48bfe7349060a2e95b5.zip
Merge pull request #3 from bwaggone/feature/remove-listener-adapater-from-main
Feature/remove listener adapater from main
Diffstat (limited to 'src/main/java/soundchan/Commands.java')
-rw-r--r--src/main/java/soundchan/Commands.java14
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
+}