9 lines
No EOL
190 B
C#
9 lines
No EOL
190 B
C#
using System;
|
|
|
|
namespace WingsEmu.Packets
|
|
{
|
|
public interface IPacketDeserializer
|
|
{
|
|
(IClientPacket, Type) Deserialize(string serializedData, bool includeKeepAlive);
|
|
}
|
|
} |