From 148c06f1c99987d0d9f91993ccd8fb6dcc85786f Mon Sep 17 00:00:00 2001 From: -=yb4f310 Date: Mon, 9 Oct 2017 13:32:22 +0200 Subject: [PATCH] game loaded event --- src/game-lib-a-1-event.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/game-lib-a-1-event.js b/src/game-lib-a-1-event.js index db1db9c..4648fc6 100644 --- a/src/game-lib-a-1-event.js +++ b/src/game-lib-a-1-event.js @@ -103,6 +103,7 @@ GameLib.Event.LOAD_FONT = 0x55; GameLib.Event.FONT_NOT_FOUND = 0x56; GameLib.Event.FONT_INSTANCE_CREATED = 0x57; GameLib.Event.REGISTER_DEPENDENCIES = 0x58; +GameLib.Event.GAME_LOADED = 0x59; /** * Returns string name of event ID @@ -201,6 +202,7 @@ GameLib.Event.GetEventName = function(number) { case 0x56 : return 'font_not_found'; case 0x57 : return 'font_instance_created'; case 0x58 : return 'register_dependencies'; + case 0x59 : return 'game_loaded'; break; }