예제 #1
0
파일: Game.cs 프로젝트: youmu256/YoooTool
 /// <summary>
 ///
 /// </summary>
 /// <returns>Is Level Finish</returns>
 public bool MoveNextRoom()
 {
     CurrentIndex++;
     if (CurrentIndex > Config.Rooms.Count)
     {
         CurrentRoom = null;
         return(true);
     }
     CurrentRoom = Config.Rooms[CurrentIndex - 1];
     return(false);
 }
예제 #2
0
파일: Game.cs 프로젝트: youmu256/YoooTool
 public void LoadLevelConfig(GameLevelConfig cfg)
 {
     Config       = cfg;
     CurrentIndex = 0;
     CurrentRoom  = null;
 }
예제 #3
0
 public void AddRoom(RoomBaseConfig room)
 {
     Rooms.Add(room);
 }