Add Any for Platform and Target enums
This commit is contained in:
committed by
Maplewheels
parent
d0f5cb87e7
commit
8dedc54468
@@ -6,14 +6,16 @@ namespace Barotrauma.LuaCs.Data;
|
|||||||
[Flags]
|
[Flags]
|
||||||
public enum Platform
|
public enum Platform
|
||||||
{
|
{
|
||||||
Linux=0x1,
|
Linux = 0x1,
|
||||||
OSX=0x2,
|
OSX = 0x2,
|
||||||
Windows=0x4
|
Windows = 0x4,
|
||||||
|
Any = Linux | OSX | Windows
|
||||||
}
|
}
|
||||||
|
|
||||||
[Flags]
|
[Flags]
|
||||||
public enum Target
|
public enum Target
|
||||||
{
|
{
|
||||||
Client=0x1,
|
Client = 0x1,
|
||||||
Server=0x2
|
Server = 0x2,
|
||||||
|
Any = Client | Server
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user