Files
Ragon/Ragon.Server/Sources/IO/NetworkChannel.cs
T

8 lines
103 B
C#

namespace Ragon.Server.IO;
public enum NetworkChannel
{
RELIABLE = 1,
UNRELIABLE = 2,
RAW = 3,
}