Back to project page libgdx-sample.
The source code is released under:
GNU Lesser General Public License
If you think the Android project libgdx-sample 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 ch.epfl.chili.libgdx_sample; //from w ww . ja v a 2s .co m /** * A platform independent base for all the simple and short platform dependent methods (camera interface is not one of them) * @author Ayberk zgr */ public interface PlatformDependentMethods { /** * Gets the tag configuration filename with absolute path. Creates a temporary file if necessary. * * @return The tag configuration filename with absolute path */ public String Chilitags_getTagConfigFilename(); /** * Gets the camera calibration filename with absolute path. Creates a temporary file if necessary. * * @return The camera calibration filename with absolute path */ public String Chilitags_getCalibrationFilename(); /** * Prints the given message to the platform's default (standard) output. * * @param message The message to be shown */ public void print(String message); }