Back to project page SevenWonders.
The source code is released under:
Apache License
If you think the Android project SevenWonders 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 wave; /*from ww w. ja v a 2 s .c o m*/ public class Constants { public static final String TMP_DIR = System.getProperty("java.io.tmpdir"); static { System.out.println("System temp directory is: " + TMP_DIR); } public static final String OUT_DIR = "out"; static { System.out.println("Output directory is: " + OUT_DIR); } }