refactor: make class not abstract

This commit is contained in:
tsrk
2023-01-11 11:22:18 +01:00
parent 578d16f2bc
commit 42ff8c75fa

View File

@ -15,7 +15,7 @@ using osuTK;
namespace osu.Game.Graphics.UserInterface
{
public abstract partial class SegmentedGraph<T> : Drawable
public partial class SegmentedGraph<T> : Drawable
where T : struct, IComparable<T>, IConvertible, IEquatable<T>
{
private bool graphNeedsUpdate;