mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-01 17:52:39 +00:00
8 lines
No EOL
210 B
C
8 lines
No EOL
210 B
C
#pragma once
|
|
|
|
#include "Packet.h"
|
|
|
|
struct InitPacket : Packet {
|
|
InitPacket() : Packet() {this->mType = PacketType::CLIENTINIT; mPacketSize = sizeof(InitPacket) - sizeof(Packet);};
|
|
u16 maxPlayers = 0;
|
|
}; |