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 www . j a v a2 s .co m import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import android.content.SharedPreferences; public interface FileIO { public InputStream readFile(String fileName) throws IOException; public OutputStream writeFile(String fileName) throws IOException; public InputStream readAsset(String fileName) throws IOException; public SharedPreferences getSharedPref(); }