JobManager/ProtocolLib/PacketIO/PacketFileType.cs
2024-06-01 12:28:32 +09:00

12 lines
132 B
C#

namespace PacketIO;
[Flags]
public enum PacketFileType : byte
{
None = 0,
File = 0x02 << 0,
Directory = 0x02 << 1,
}