Skip to content

Commit

Permalink
feat: EnumParser read in culture specific json
Browse files Browse the repository at this point in the history
  • Loading branch information
czastack committed Dec 23, 2023
1 parent f058a46 commit ae71d56
Show file tree
Hide file tree
Showing 4 changed files with 2,336 additions and 375 deletions.
2 changes: 1 addition & 1 deletion RszTool.App/SaveData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class SaveData
public const string JsonPath = "RszTool.App.SaveData.json";

[JsonConverter(typeof(EnumJsonConverter<GameName>))]
public GameName GameName { get; set; }
public GameName GameName { get; set; } = GameName.re4;
public ObservableCollection<string> RecentFiles { get; set; } = new();
public ContextIDData LastContextID { get; set; } = new();
}
Expand Down
Loading

0 comments on commit ae71d56

Please sign in to comment.