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

8 lines
103 B
C#
Raw Normal View History

2023-10-07 19:30:52 +03:00
namespace Ragon.Server.IO;
public enum NetworkChannel
{
RELIABLE = 1,
UNRELIABLE = 2,
RAW = 3,
}