mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 03:05:16 +00:00
10 lines
No EOL
289 B
C
10 lines
No EOL
289 B
C
#pragma once
|
|
|
|
#include "Packet.h"
|
|
|
|
struct PlayerConnect : Packet {
|
|
PlayerConnect() : Packet() {this->mType = PacketType::PLAYERCON; mPacketSize = sizeof(PlayerConnect) - sizeof(Packet);};
|
|
ConnectionTypes conType;
|
|
u16 maxPlayerCount;
|
|
char clientName[COSTUMEBUFSIZE] = {};
|
|
}; |