mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
refactor: make class not abstract
This commit is contained in:
@ -15,7 +15,7 @@ using osuTK;
|
|||||||
|
|
||||||
namespace osu.Game.Graphics.UserInterface
|
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>
|
where T : struct, IComparable<T>, IConvertible, IEquatable<T>
|
||||||
{
|
{
|
||||||
private bool graphNeedsUpdate;
|
private bool graphNeedsUpdate;
|
||||||
|
Reference in New Issue
Block a user