mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-26 05:05:24 +00:00
8 lines
210 B
C
8 lines
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;
|
||
|
};
|