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.desktop; /* w w w. j ava2s . co m*/ import ch.epfl.chili.libgdx_sample.PlatformDependentMethods; /** * Container for desktop dependent simple methods * @author Ayberk zgr */ public class DesktopDependentMethods implements PlatformDependentMethods { @Override public String Chilitags_getTagConfigFilename() { //TODO:GET TAG CONFIG OUT OF JAR return null; } @Override public String Chilitags_getCalibrationFilename() { //TODO:GET TAG CONFIG OUT OF JAR return null; } @Override public void print(String message) { System.out.println(message); } }