Remove abstract ConnectionRenderer class

This commit is contained in:
smoogipoo
2019-11-01 15:34:24 +09:00
parent bfe7309964
commit ddfcda9e02
3 changed files with 4 additions and 24 deletions

View File

@ -5,11 +5,12 @@ using System;
using System.Collections.Generic;
using osuTK;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Rulesets.Objects.Types;
namespace osu.Game.Rulesets.Osu.Objects.Drawables.Connections
{
public class FollowPointRenderer : ConnectionRenderer<OsuHitObject>
public class FollowPointRenderer : CompositeDrawable
{
private int pointDistance = 32;
@ -47,7 +48,7 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Connections
private IEnumerable<OsuHitObject> hitObjects;
public override IEnumerable<OsuHitObject> HitObjects
public IEnumerable<OsuHitObject> HitObjects
{
get => hitObjects;
set