Implement OsuSliderBar.cs as base ( non framework side ) class from which NormalSliderBar.cs inherits

This commit is contained in:
mk56-spn
2023-01-26 12:16:51 +01:00
parent 3988131475
commit ac3ad9cf8d
2 changed files with 14 additions and 2 deletions

View File

@ -0,0 +1,13 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using osu.Framework.Graphics.UserInterface;
namespace osu.Game.Graphics.UserInterface
{
public abstract partial class OsuSliderBar<T> : SliderBar<T>
where T : struct, IEquatable<T>, IComparable<T>, IConvertible
{
}
}