Back to project page android-gear.
The source code is released under:
MIT License
If you think the Android project android-gear 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.androidgear.core.asset; //w w w . j a v a 2 s .co m import com.androidgear.core.graphics.Font; import com.androidgear.core.graphics.Image; import com.androidgear.core.graphics.SpriteSheet; import com.androidgear.core.sound.Sound; public interface AssetLoader { public abstract Image loadImage(String src) throws AssetNotFoundException; public abstract Sound loadSound(String src) throws AssetNotFoundException; public abstract Font loadFont(String src, int style, int size) throws AssetNotFoundException; public abstract SpriteSheet loadSpriteSheet(String src, int c, int r, int fps) throws AssetNotFoundException; }