Skip to content

Commit

Permalink
Thumbnail
Browse files Browse the repository at this point in the history
  • Loading branch information
IhateTrains committed Sep 27, 2024
1 parent 3f3d1ad commit 934bd23
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CK3ToEU4/Source/CK3ToEU4Converter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public static class CK3ToEU4Converter
public static void ConvertCK3ToEU4(ConverterVersion converterVersion)
{
Logger.Progress(0);
var theConfiguration = new Configuration.Configuration(converterVersion);
var theConfiguration = new Configuration.Config(converterVersion);
throw new NotImplementedException();
// TODO: CK3World sourceWorld = new(theConfiguration, converterVersion);
// TODO: EU4::World destWorld(sourceWorld, *theConfiguration, converterVersion);
Expand Down
6 changes: 3 additions & 3 deletions CK3ToEU4/Source/Configuration/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public enum DiscoveredBy
Dynamic = 2
}

public class Configuration
public class Config
{
public string SaveGamePath { get; private set; } = string.Empty;
public string CK3Path { get; private set; } = string.Empty;
Expand All @@ -105,7 +105,7 @@ public class Configuration
public DynasticNames DynasticNames { get; private set; } = DynasticNames.Enabled;
public DiscoveredBy DiscoveredBy { get; private set; } = DiscoveredBy.Vanilla;

public Configuration(ConverterVersion converterVersion)
public Config(ConverterVersion converterVersion)
{
Logger.Info("Reading configuration file");
var parser = new Parser();
Expand All @@ -120,7 +120,7 @@ public Configuration(ConverterVersion converterVersion)
Logger.Progress(3);
}

public Configuration(BufferedReader reader)
public Config(BufferedReader reader)
{
var parser = new Parser();
RegisterKeys(parser);
Expand Down
File renamed without changes.

0 comments on commit 934bd23

Please sign in to comment.