SuperMarioOdysseyOnline/include/packets/InitPacket.h

8 lines
217 B
C
Raw Normal View History

2022-06-16 21:33:18 +00:00
#pragma once
#include "Packet.h"
struct PACKED InitPacket : Packet {
2022-06-16 21:33:18 +00:00
InitPacket() : Packet() {this->mType = PacketType::CLIENTINIT; mPacketSize = sizeof(InitPacket) - sizeof(Packet);};
u16 maxPlayers = 0;
};