Add player slot to settings object

This commit is contained in:
2026-05-25 21:17:42 -05:00
parent e7f101ddee
commit e173ae8056
4 changed files with 10 additions and 6 deletions

View File

@@ -7,9 +7,12 @@
[NoSettingName]
public RandomizerInstance Randomizer { get; set; } = RandomizerInstance.Base;
[NoSettingName]
[IgnoreSetting]
public string PlayerName { get; set; } = string.Empty;
[IgnoreSetting]
public int PlayerSlot { get; set; } = 1;
[NoSettingName]
public RaceMode Race { get; set; } = RaceMode.Normal;