コード例 #1
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);
 }