LoadFile() 개인적인 메소드

private LoadFile ( string path, List pathArgs = null ) : void
path string
pathArgs List
리턴 void
예제 #1
0
 public static void Load(string path, List <string> pathArgs = null)
 {
     Engine.Instance.Begin();
     if (CurrentGame != null)
     {
         CurrentGame.Unload();
     }
     CurrentGame = new Game();
     CurrentGame.LoadFile(path, pathArgs);
 }
예제 #2
0
파일: Game.cs 프로젝트: laazer/cs_megaman
 public static void Load(string path, List<string> pathArgs = null)
 {
     Engine.Instance.Begin();
     if (CurrentGame != null)
     {
         CurrentGame.Unload();
     }
     CurrentGame = new Game();
     CurrentGame.LoadFile(path, pathArgs);
 }