diff --git a/osu.Game/Rulesets/Objects/HitObjectLifetimeEntry.cs b/osu.Game/Rulesets/Objects/HitObjectLifetimeEntry.cs
index b517f6b9e6..4e058e7c31 100644
--- a/osu.Game/Rulesets/Objects/HitObjectLifetimeEntry.cs
+++ b/osu.Game/Rulesets/Objects/HitObjectLifetimeEntry.cs
@@ -2,6 +2,7 @@
// See the LICENCE file in the repository root for full licence text.
using System;
+using System.Collections.Generic;
using osu.Framework.Bindables;
using osu.Framework.Graphics.Performance;
using osu.Game.Rulesets.Judgements;
@@ -19,6 +20,11 @@ namespace osu.Game.Rulesets.Objects
///
public readonly HitObject HitObject;
+ ///
+ /// The list of for the 's nested objects (if any).
+ ///
+ public readonly List NestedEntries = new List();
+
///
/// The result that was judged with.
/// This is set by the accompanying , and reused when required for rewinding.