Add Any for Platform and Target enums

This commit is contained in:
Evil Factory
2026-01-25 17:35:26 -03:00
committed by Maplewheels
parent d0f5cb87e7
commit 8dedc54468

View File

@@ -6,14 +6,16 @@ namespace Barotrauma.LuaCs.Data;
[Flags]
public enum Platform
{
Linux=0x1,
OSX=0x2,
Windows=0x4
Linux = 0x1,
OSX = 0x2,
Windows = 0x4,
Any = Linux | OSX | Windows
}
[Flags]
public enum Target
{
Client=0x1,
Server=0x2
Client = 0x1,
Server = 0x2,
Any = Client | Server
}