LoadFile() private method

private LoadFile ( string path, List pathArgs = null ) : void
path string
pathArgs List
return 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);
 }