mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-26 13:13:04 +00:00
9 lines
200 B
C
9 lines
200 B
C
|
#pragma once
|
||
|
|
||
|
#include "Packet.h"
|
||
|
|
||
|
struct PACKED UdpInit : Packet {
|
||
|
UdpInit() : Packet() {this->mType = PacketType::UDPINIT; mPacketSize = sizeof(UdpInit) - sizeof(Packet);};
|
||
|
u16 port = 0;
|
||
|
};
|