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; /*w w w . ja v a2 s . c o m*/ import com.slaxer.framework.Graphics.ImageFormat; public interface Image { public int getWidth(); public int getHeight(); public ImageFormat getFormat(); public void dispose(); }