1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-29 04:49:58 +08:00

refactor: make class not abstract

This commit is contained in:
tsrk
2023-01-11 11:22:18 +01:00
Unverified
parent 578d16f2bc
commit 42ff8c75fa
@@ -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;