Overwrite

Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
This commit is contained in:
Unstable Kitsune
2023-11-28 23:20:26 -05:00
parent 3cd54811de
commit b918192e4e
11608 changed files with 2644205 additions and 47 deletions

View File

@@ -0,0 +1,32 @@
namespace Server.Network
{
public delegate void OnPacketReceive(NetState state, PacketReader pvSrc);
public delegate bool ThrottlePacketCallback(byte packetID, NetState state, out bool drop);
public class PacketHandler
{
private readonly int m_PacketID;
private readonly int m_Length;
private readonly bool m_Ingame;
private readonly OnPacketReceive m_OnReceive;
public PacketHandler(int packetID, int length, bool ingame, OnPacketReceive onReceive)
{
m_PacketID = packetID;
m_Length = length;
m_Ingame = ingame;
m_OnReceive = onReceive;
}
public int PacketID { get { return m_PacketID; } }
public int Length { get { return m_Length; } }
public OnPacketReceive OnReceive { get { return m_OnReceive; } }
public ThrottlePacketCallback ThrottleCallback { get; set; }
public bool Ingame { get { return m_Ingame; } }
}
}