mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 00:53:56 +09:00
Fix one incorrect namespace syntax file
This commit is contained in:
@ -3,17 +3,18 @@
|
|||||||
|
|
||||||
using osu.Framework.Bindables;
|
using osu.Framework.Bindables;
|
||||||
|
|
||||||
namespace osu.Game.Rulesets.Objects.Types;
|
namespace osu.Game.Rulesets.Objects.Types
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// A HitObject that has a slider velocity multiplier.
|
|
||||||
/// </summary>
|
|
||||||
public interface IHasSliderVelocity
|
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The slider velocity multiplier.
|
/// A HitObject that has a slider velocity multiplier.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
double SliderVelocity { get; set; }
|
public interface IHasSliderVelocity
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// The slider velocity multiplier.
|
||||||
|
/// </summary>
|
||||||
|
double SliderVelocity { get; set; }
|
||||||
|
|
||||||
BindableNumber<double> SliderVelocityBindable { get; }
|
BindableNumber<double> SliderVelocityBindable { get; }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user