Convert constructor in abstract class to protected

This commit is contained in:
Alden Wu 2022-07-14 17:08:52 -07:00
parent 4453b0b3e8
commit 1581f1a0ff
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ public abstract class FollowCircle : CompositeDrawable
[Resolved(canBeNull: true)]
protected DrawableHitObject? ParentObject { get; private set; }
public FollowCircle()
protected FollowCircle()
{
RelativeSizeAxes = Axes.Both;
}