A game about forced loneliness, made by TACStudios
1/*--------------------------------------------------------------------------------------------- 2 * Copyright (c) Unity Technologies. 3 * Copyright (c) Microsoft Corporation. All rights reserved. 4 * Licensed under the MIT License. See License.txt in the project root for license information. 5 *--------------------------------------------------------------------------------------------*/ 6using System; 7 8namespace Microsoft.Unity.VisualStudio.Editor 9{ 10 [Flags] 11 public enum ProjectGenerationFlag 12 { 13 None = 0, 14 Embedded = 1, 15 Local = 2, 16 Registry = 4, 17 Git = 8, 18 BuiltIn = 16, 19 Unknown = 32, 20 PlayerAssemblies = 64, 21 LocalTarBall = 128, 22 } 23}