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); }