Back to project page Hungry-Mouse.
The source code is released under:
MIT License
If you think the Android project Hungry-Mouse listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
//Name: Game.java //Purpose: create and keep track of low level methods //from w w w.j ava2 s . co m package com.hungry.mouse.framework; public interface Game { //getters// public Audio getAudio(); public Input getInput(); public FileIO getFileIO(); public Graphics getGraphics(); public Screen getCurrentScreen(); public Screen getInitScreen(); //setters// public void setScreen(Screen screen); }