16 public static readonly
UnrealConfig Debug =
new() { Value = nameof(Debug) };
17 public static readonly
UnrealConfig DebugGame =
new() { Value = nameof(DebugGame) };
18 public static readonly
UnrealConfig Development =
new() { Value = nameof(Development) };
19 public static readonly
UnrealConfig Shipping =
new() { Value = nameof(Shipping) };
20 public static readonly
UnrealConfig Test =
new() { Value = nameof(Test) };
22 public static implicit
operator string(
UnrealConfig configuration)
24 return configuration.Value;