mirror of
https://github.com/osukey/osukey.git
synced 2025-06-17 17:28:01 +09: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)
|
|
{
|
|
}
|
|
}
|
|
} |