1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-15 14:13:01 +08:00
Files
osu-lazer/osu.Game/Configuration/ReleaseStream.cs
T
2025-05-18 01:35:28 +09:00

16 lines
338 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.
using System.ComponentModel;
namespace osu.Game.Configuration
{
public enum ReleaseStream
{
Lazer,
[Description("Tachyon (Unstable)")]
Tachyon
}
}