Codechange: remove public access to the next pointer in Packet

This commit is contained in:
Rubidium
2021-04-20 18:50:46 +02:00
committed by rubidium42
parent f71fb0f54a
commit 3abefdf561
4 changed files with 38 additions and 35 deletions

View File

@@ -62,6 +62,9 @@ public:
Packet(PacketType type);
~Packet();
static void AddToQueue(Packet **queue, Packet *packet);
static Packet *PopFromQueue(Packet **queue);
/* Sending/writing of packets */
void PrepareToSend();