title screen using IngameRenderer

This commit is contained in:
minjaesong
2018-07-01 01:38:07 +09:00
parent ab27522eae
commit 702cddcc5c
5 changed files with 1395 additions and 590 deletions

View File

@@ -78,7 +78,7 @@ public class AppLoader implements ApplicationListener {
*
* e.g. 0x02010034 can be translated as 2.1.52
*/
public static final int VERSION_RAW = 0x00_02_0226;
public static final int VERSION_RAW = 0x00_02_0270;
public static final String getVERSION_STRING() {
return String.format("%d.%d.%d", VERSION_RAW >>> 24, (VERSION_RAW & 0xff0000) >>> 16, VERSION_RAW & 0xFFFF);
}