Fix: restructing session manager, ES6 -> ES5
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
const LANGUAGE_KOREAN = "korean";
|
||||
const LANGUAGE_ENGLISH = "english";
|
||||
var LANGUAGE_KOREAN = "korean";
|
||||
var LANGUAGE_ENGLISH = "english";
|
||||
|
||||
const MODE_RELEASE = "release";
|
||||
const MODE_DEBUG = "debug";
|
||||
const runMode = MODE_RELEASE;
|
||||
var MODE_RELEASE = "release";
|
||||
var MODE_DEBUG = "debug";
|
||||
var runMode = MODE_RELEASE;
|
||||
|
||||
function isDebugMode() {
|
||||
// console.log("debug mode ? " + runMode);
|
||||
@@ -16,7 +16,7 @@ function isReleaseMode() {
|
||||
}
|
||||
|
||||
|
||||
const GAME_SCREEN_SIZE = { x: 1024, y: 768 }
|
||||
var GAME_SCREEN_SIZE = { x: 1024, y: 768 }
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user