mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
17 lines
No EOL
267 B
C#
17 lines
No EOL
267 B
C#
namespace ACE.Server.Network
|
|
{
|
|
public enum PacketDirection
|
|
{
|
|
None,
|
|
|
|
/// <summary>
|
|
/// Client->Server
|
|
/// </summary>
|
|
Client,
|
|
|
|
/// <summary>
|
|
/// Server->Client
|
|
/// </summary>
|
|
Server
|
|
}
|
|
} |