mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 06:42:56 +08:00
Make JudgementProcessor.SimulateAutoplay()
non-virtual
Nobody overrides this, and with the structure given, overriders would have to rewrite half of this code anyway. The fact that the class has 2 other overridable members (`CreateResult()`, `GetSimulatedHitResult()`) which cease to have any meaning if `SimulateAutoplay()` is overridden also contributes to taking this decision.
This commit is contained in:
parent
ccf6ed1e5b
commit
04e812b5ab
@ -149,7 +149,7 @@ namespace osu.Game.Rulesets.Scoring
|
||||
/// </summary>
|
||||
/// <remarks>This provided temporarily. DO NOT USE.</remarks>
|
||||
/// <param name="beatmap">The <see cref="IBeatmap"/> to simulate.</param>
|
||||
protected virtual void SimulateAutoplay(IBeatmap beatmap)
|
||||
protected void SimulateAutoplay(IBeatmap beatmap)
|
||||
{
|
||||
IsSimulating = true;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user