mirror of
https://github.com/ppy/osu.git
synced 2025-02-06 21:52:58 +08:00
15 lines
401 B
C#
15 lines
401 B
C#
using osu.Game.Rulesets.Judgements;
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
namespace osu.Game.Rulesets.UI
|
|
{
|
|
public class SpeedAdjustedPlayfield<TObject, TJudgement> : Playfield<TObject, TJudgement>
|
|
where TObject : HitObject
|
|
where TJudgement : Judgement
|
|
{
|
|
protected SpeedAdjustedPlayfield(float? customWidth = null)
|
|
: base(customWidth)
|
|
{
|
|
}
|
|
}
|
|
} |