8 lines
103 B
C#
8 lines
103 B
C#
|
|
namespace Ragon.Server.IO;
|
||
|
|
|
||
|
|
public enum NetworkChannel
|
||
|
|
{
|
||
|
|
RELIABLE = 1,
|
||
|
|
UNRELIABLE = 2,
|
||
|
|
RAW = 3,
|
||
|
|
}
|