ScrollAlgorithm -> ScrollVisualisationMethod

This commit is contained in:
smoogipoo
2018-11-12 17:26:37 +09:00
parent 33056b8098
commit aee7a80e71
5 changed files with 10 additions and 10 deletions

View File

@ -0,0 +1,17 @@
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.ComponentModel;
namespace osu.Game.Configuration
{
public enum ScrollVisualisationMethod
{
[Description("Sequential")]
Sequential,
[Description("Overlapping")]
Overlapping,
[Description("Constant")]
Constant
}
}