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: Image.java //Purpose: make use of imageformat /*ww w . ja v a 2 s. c om*/ package com.hungry.mouse.framework; import com.hungry.mouse.framework.Graphics.ImageFormat; public interface Image { public int getWidth(); public int getHeight(); public ImageFormat getFormat(); public void dispose(); }