mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-16 18:21:28 -07:00
* 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
15 lines
305 B
C#
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
|
|
}
|
|
}
|