bloxstrap/Bloxstrap/Enums/LaunchMode.cs
2025-03-11 22:57:46 +00:00

15 lines
305 B
C#

namespace Bloxstrap.Enums
{
public enum LaunchMode
{
None,
/// <summary>
/// Launch mode will be determined inside the bootstrapper. Only works if the VersionFlag is set.
/// </summary>
Unknown,
Player,
Studio,
StudioAuth
}
}