Files
osu-framework/osu.Framework/Graphics/Visualisation/TreeContainerStatus.cs
2023-06-07 08:16:24 +03:00

12 lines
290 B
C#

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
namespace osu.Framework.Graphics.Visualisation
{
internal enum TreeContainerStatus
{
Onscreen,
Offscreen
}
}