Add top-level osu! hitobject pooling

This commit is contained in:
smoogipoo
2020-11-11 00:22:06 +09:00
parent 39d37c4779
commit bf72961959
6 changed files with 108 additions and 42 deletions

View File

@ -41,6 +41,11 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables
private Container<DrawableSliderTick> tickContainer;
private Container<DrawableSliderRepeat> repeatContainer;
public DrawableSlider()
: this(null)
{
}
public DrawableSlider([CanBeNull] Slider s = null)
: base(s)
{