added comments for multitypes

This commit is contained in:
CWX
2025-01-06 17:57:38 +00:00
parent 4d3eafad6c
commit f5faf1b6af
2 changed files with 2 additions and 2 deletions
@@ -70,7 +70,7 @@ public class SeasonalEvent
public int EndMonth { get; set; }
[JsonPropertyName("settings")]
public Dictionary<string, SeasonalEventSettings> Settings { get; set; }
public Dictionary<string, object> Settings { get; set; } // TODO: Type was Record<string, ISeasonalEventSettings | IZombieSettings>
}
public class SeasonalEventSettings
+1 -1
View File
@@ -9,7 +9,7 @@ public class BotController
throw new NotImplementedException();
}
public object GetBotDifficulty(string type, string difficulty) // IBotCore | IDifficultyCategories
public object GetBotDifficulty(string type, string difficulty) // TODO: return type was: IBotCore | IDifficultyCategories
{
throw new NotImplementedException();
}