mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-04-25 00:38:53 -04:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
25 lines
362 B
C#
25 lines
362 B
C#
namespace Editor;
|
|
|
|
public partial class ProjectRow
|
|
{
|
|
[Flags]
|
|
enum LaunchFlags
|
|
{
|
|
/// <summary>
|
|
/// Launch with no special flags.
|
|
/// </summary>
|
|
None = 1 << 0,
|
|
|
|
/// <summary>
|
|
/// Forcibly launch in VR mode.
|
|
/// </summary>
|
|
VR = 1 << 1,
|
|
|
|
/// <summary>
|
|
/// Enable Vulkan validation layers
|
|
/// </summary>
|
|
VulkanValidation = 1 << 2,
|
|
}
|
|
}
|
|
|