temporarily disabled mp3's, began adding small event system

This commit is contained in:
2017-05-19 00:31:16 -05:00
parent 1e2ed0c68a
commit 14cd210024
12 changed files with 143 additions and 68 deletions

View File

@@ -0,0 +1,5 @@
package zero1hd.polyjet.util;
public enum MiniEvents {
SPECTRAL_FLUX_DONE, MUSIC_DATA_CLEANED, MUSIC_SELECTED;
}

View File

@@ -0,0 +1,5 @@
package zero1hd.polyjet.util;
public interface MiniListener {
public void handle(MiniEvents ID);
}