You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
192 B
12 lines
192 B
1 year ago
|
namespace StabilityMatrix.Core.Helper;
|
||
|
|
||
|
[Flags]
|
||
|
public enum PlatformKind
|
||
|
{
|
||
|
Unknown = 0,
|
||
|
Windows = 1 << 0,
|
||
|
Unix = 1 << 1,
|
||
|
Linux = Unix | 1 << 2,
|
||
|
MacOS = Unix | 1 << 3,
|
||
|
}
|