mirror of
https://github.com/ppy/osu-tools.git
synced 2025-06-08 07:17:01 +09:00
39 lines
1,000 B
C#
39 lines
1,000 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-tools/master/LICENCE
|
|
|
|
using JetBrains.Annotations;
|
|
using osu.Game.Rulesets;
|
|
|
|
namespace PerformanceCalculator.Simulate
|
|
{
|
|
public abstract class BaseSimulateCommand : ProcessorCommand
|
|
{
|
|
public abstract string Beatmap { get; }
|
|
|
|
public abstract Ruleset Ruleset { get; }
|
|
|
|
[UsedImplicitly]
|
|
public virtual double Accuracy { get; }
|
|
|
|
[UsedImplicitly]
|
|
public virtual int? Combo { get; }
|
|
|
|
[UsedImplicitly]
|
|
public virtual double PercentCombo { get; }
|
|
|
|
[UsedImplicitly]
|
|
public virtual int Score { get; }
|
|
|
|
[UsedImplicitly]
|
|
public virtual string[] Mods { get; }
|
|
|
|
[UsedImplicitly]
|
|
public virtual int Misses { get; }
|
|
|
|
[UsedImplicitly]
|
|
public virtual int? Mehs { get; }
|
|
|
|
[UsedImplicitly]
|
|
public virtual int? Goods { get; }
|
|
}
|
|
}
|