progressed on pre game screen

This commit is contained in:
2017-05-24 14:45:00 -05:00
parent bb40cd230d
commit e949deffe7
9 changed files with 95 additions and 26 deletions

View File

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

View File

@@ -1,5 +1,7 @@
package zero1hd.polyjet.util;
import com.badlogic.gdx.Screen;
public interface TransitionAdapter {
public void postTransition();
public Screen postTransition();
}