Add required properties to make realm models backwards compatible

This commit is contained in:
Dean Herbert
2021-11-19 19:24:07 +09:00
parent 618903c217
commit c3df58e01c
5 changed files with 103 additions and 11 deletions

View File

@ -33,7 +33,7 @@ namespace osu.Game.Rulesets
}
[UsedImplicitly]
private RulesetInfo()
public RulesetInfo()
{
}
@ -83,5 +83,11 @@ namespace osu.Game.Rulesets
return ruleset;
}
#region Compatibility properties
public int ID => OnlineID;
#endregion
}
}