
ATLYSS
You are viewing a potentially older version of this package. View Latest Version

CodeYapper is a lightweight C# networking library designed to simplify sending and receiving custom packets in Atlyss. It allows you to create your own packet types and register callbacks that are automatically invoked when matching packets are received.
Special Thanks: ButteredLilly for initial inspiration for the delivery method, thanks!
Whenever a packet version update is applied you will be unable to communicate with clients not running the same version as you. If you are not seeing other user's packets then ensure you are running the latest version of CodeTalker!
PacketBase or BinaryPacketBase.PacketBase.CodeTalkerNetwork.RegisterListener<T>().CodeTalkerNetwork.SendNetworkPacket().PacketHeader information is included with each payload, providing useful data such as the sender's identity and whether the sender is the host.BinaryPacketBase.CodeTalkerNetwork.RegisterBinaryListener<T>().CodeTalkerNetwork.SendBinaryNetworkPacket().PacketHeader information is included with each payload, providing useful data such as the sender's identity and whether the sender is the host.For a full example, see the example folder in the repo.