-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
VerifyImperatorVersion, VerifyCK3Version (#303)
- Loading branch information
1 parent
321fec8
commit e7af714
Showing
2 changed files
with
139 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,15 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Reflection; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using commonItems; | ||
using commonItems; | ||
|
||
namespace ImperatorToCK3 { | ||
class Converter { | ||
internal static class Converter { | ||
public static void ConvertImperatorToCK3(ConverterVersion converterVersion) { | ||
var config = new Configuration(); | ||
Logger.Progress("0 %"); | ||
var config = new Configuration(converterVersion); | ||
var imperatorWorld = new Imperator.World(config, converterVersion); | ||
var ck3World = new CK3.World(imperatorWorld, config); | ||
Outputter.WorldOutputter.OutputWorld(ck3World, config); | ||
Logger.Info("* Conversion complete! *"); | ||
} | ||
|
||
private void LogGameVersions(string imperatorPath, string ck3Path) { | ||
// TODO | ||
Logger.Progress("100 %"); | ||
} | ||
} | ||
} |