Should be ok now

This commit is contained in:
Vidalee 2018-05-06 13:04:20 +02:00
parent 008daf9a07
commit af85102277
1 changed files with 4 additions and 2 deletions

View File

@ -67,6 +67,7 @@ public abstract class RulesetContainer : Container
/// </summary> /// </summary>
public readonly CursorContainer Cursor; public readonly CursorContainer Cursor;
protected readonly Ruleset Ruleset; protected readonly Ruleset Ruleset;
private IRulesetConfigManager rulesetConfig; private IRulesetConfigManager rulesetConfig;
@ -165,7 +166,7 @@ protected override void Dispose(bool isDisposing)
public abstract class RulesetContainer<TObject> : RulesetContainer public abstract class RulesetContainer<TObject> : RulesetContainer
where TObject : HitObject where TObject : HitObject
{ {
public event Action<Judgement> OnJudgement; public event Action<Judgement> OnJudgement;
public event Action<Judgement> OnJudgementRemoved; public event Action<Judgement> OnJudgementRemoved;
@ -193,7 +194,7 @@ public abstract class RulesetContainer<TObject> : RulesetContainer
/// Whether the specified beatmap is assumed to be specific to the current ruleset. /// Whether the specified beatmap is assumed to be specific to the current ruleset.
/// </summary> /// </summary>
public readonly bool IsForCurrentRuleset; public readonly bool IsForCurrentRuleset;
public override ScoreProcessor CreateScoreProcessor() => new ScoreProcessor<TObject>(this); public override ScoreProcessor CreateScoreProcessor() => new ScoreProcessor<TObject>(this);
protected override Container<Drawable> Content => content; protected override Container<Drawable> Content => content;
@ -218,6 +219,7 @@ private void load(OsuConfigManager config)
applyMods(Mods, config); applyMods(Mods, config);
loadObjects(); loadObjects();
} }
/// <summary> /// <summary>