Back to project page GameEngine.
The source code is released under:
# Copyright 2013 JK Wood <joshuakwood@gmail.com> # This framework is released under the Dog-on-Fire License: # If use of this framework causes your dog to catch on fire, # you agree to send me five d...
If you think the Android project GameEngine listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.slaxer.framework; /*from w w w. j a va 2 s. c o m*/ public interface Game { public Audio getAudio(); public Input getInput(); public FileIO getFileIO(); public Graphics getGraphics(); public void setScreen(Screen screen); public Screen getCurrentScreen(); public Screen getInitScreen(); }