added comments for multitypes
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user