mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
18 lines
No EOL
304 B
C#
18 lines
No EOL
304 B
C#
using System;
|
|
|
|
namespace VSCodeEditor
|
|
{
|
|
[Flags]
|
|
public enum ProjectGenerationFlag
|
|
{
|
|
None = 0,
|
|
Embedded = 1,
|
|
Local = 2,
|
|
Registry = 4,
|
|
Git = 8,
|
|
BuiltIn = 16,
|
|
Unknown = 32,
|
|
PlayerAssemblies = 64,
|
|
LocalTarBall = 128,
|
|
}
|
|
} |