Add xmldoc

This commit is contained in:
Dean Herbert 2018-03-04 02:12:45 +09:00
parent 0e928429d4
commit 8273288048
1 changed files with 5 additions and 0 deletions

View File

@ -90,6 +90,11 @@ protected Ruleset(RulesetInfo rulesetInfo = null)
/// <returns>A descriptive name of the variant.</returns>
public virtual string GetVariantName(int variant) => string.Empty;
/// <summary>
/// For rulesets which support legacy (osu-stable) replay conversion, this method will create an empty replay frame
/// for conversion use.
/// </summary>
/// <returns>An empty frame for the current ruleset, or null if unsupported.</returns>
public virtual IConvertibleReplayFrame CreateConvertibleReplayFrame() => null;
/// <summary>