// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Collections.Generic; using osu.Game.Rulesets.Objects.Drawables; namespace osu.Game.Rulesets.UI { public interface IHitObjectContainer { /// /// All currently in-use s. /// IEnumerable Objects { get; } /// /// All currently in-use s that are alive. /// /// /// If this uses pooled objects, this is equivalent to . /// IEnumerable AliveObjects { get; } } }