示例#1
0
        public void runFullGUIUpdate()
        {
            //GUIHandler.setDescription("You are wandering the world... ");
            GUIHandler.setTitle("Livimon");
            GUIHandler.setMapText(MapSystem.getTileName());
            GUIHandler.setMapGrid(MapSystem.getCurrentMapListView());
            if (MapSystem.getFullMapListNeedsUpdate())
            {
                GUIHandler.setFullMap(MapSystem.getFullMapListView());
            }

            GUIHandler.screenUpdatePrepared();
        }
示例#2
0
 public void runInitialLogic()
 {
     MapSystem.initializeWorldMap();
     GUIHandler.setFullMap(MapSystem.getFullMapListView());
     runFullGUIUpdate();
 }