mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 16:29:58 +09:00
Rename UnmanagedHitObjectEntry -> SyntheticHitObjectEntry
"Unmanaged" was confusing because its lifetime is still managed by the HitObjectContainer.
This commit is contained in:
@ -172,7 +172,7 @@ namespace osu.Game.Rulesets.Objects.Drawables
|
||||
{
|
||||
if (initialHitObject != null)
|
||||
{
|
||||
lifetimeEntry = new UnmanagedHitObjectEntry(initialHitObject);
|
||||
lifetimeEntry = new SyntheticHitObjectEntry(initialHitObject);
|
||||
ensureEntryHasResult();
|
||||
}
|
||||
}
|
||||
@ -227,7 +227,7 @@ namespace osu.Game.Rulesets.Objects.Drawables
|
||||
if (hitObject == null)
|
||||
throw new ArgumentNullException($"Cannot apply a null {nameof(HitObject)}.");
|
||||
|
||||
Apply(new UnmanagedHitObjectEntry(hitObject));
|
||||
Apply(new SyntheticHitObjectEntry(hitObject));
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
Reference in New Issue
Block a user