2018-01-08 10:34:37 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2018-01-11 11:39:06 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2018-01-08 10:34:37 +08:00
|
|
|
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Configuration
|
|
|
|
|
{
|
2018-01-12 16:18:34 +08:00
|
|
|
|
public enum SpeedChangeVisualisationMethod
|
2018-01-08 10:34:37 +08:00
|
|
|
|
{
|
2018-01-12 16:18:34 +08:00
|
|
|
|
[Description("Sequential")]
|
|
|
|
|
Sequential,
|
|
|
|
|
[Description("Overlapping")]
|
|
|
|
|
Overlapping
|
2018-01-08 10:34:37 +08:00
|
|
|
|
}
|
|
|
|
|
}
|