A game framework written with osu! in mind.
at master 21 lines 574 B view raw
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. 2// See the LICENCE file in the repository root for full licence text. 3 4namespace osu.Framework.Graphics.Performance 5{ 6 /// <summary> 7 /// Represents a direction of lifetime boundary crossing. 8 /// </summary> 9 public enum LifetimeBoundaryCrossingDirection 10 { 11 /// <summary> 12 /// A crossing from past to future. 13 /// </summary> 14 Forward, 15 16 /// <summary> 17 /// A crossing from future to past. 18 /// </summary> 19 Backward, 20 } 21}