// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. namespace osu.Framework.Graphics.Performance { /// /// The state of a . /// public enum LifetimeEntryState { /// /// The hasn't been processed within the yet. /// New, /// /// The is currently dead and becomes alive when current time >= . /// Future, /// /// The is currently alive. /// Current, /// /// The is currently dead and becomes alive when current time < . /// Past, } }