1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00

refactor: make class not abstract

This commit is contained in:
tsrk 2023-01-11 11:22:18 +01:00
parent 578d16f2bc
commit 42ff8c75fa
No known key found for this signature in database
GPG Key ID: EBD46BB3049B56D6

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;