bloxstrap/Bloxstrap/Enums/LaunchMode.cs
pizzaboxer e0f261067e
Use enum value for determining launch mode
might change how this looks, such as getting rid of StudioAuth as its own thing
2023-10-10 23:03:39 +01:00

10 lines
123 B
C#

namespace Bloxstrap.Enums
{
public enum LaunchMode
{
Player,
Studio,
StudioAuth
}
}