Timothy Schenk
1455bdd75a
All checks were successful
Test if Server can be built / build-server (push) Successful in 22s
10 lines
215 B
C#
10 lines
215 B
C#
namespace Server.Packets;
|
|
|
|
using JetBrains.Annotations;
|
|
|
|
[UsedImplicitly(ImplicitUseTargetFlags.WithInheritors)]
|
|
public interface IPacket
|
|
{
|
|
public void Deserialize(byte[] data);
|
|
public byte[] Serialize();
|
|
}
|