bloxstrap/Bloxstrap/Enums/LaunchMode.cs
Matt 893aecbdd1
Some checks failed
CI (Debug) / build (push) Has been cancelled
CI (Release) / build (push) Has been cancelled
CI (Release) / release (push) Has been cancelled
CI (Release) / release-test (push) Has been cancelled
More arguments + debug settings (#4814)
* ability to disable package cleanup

* add version and channel arguments

* ignore duplicate flags

* fix version argument not working

* add the force flag

* fix compiler warnings

* fix indentation
2025-03-12 09:12:31 +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
}
}