SuperMarioOdysseyOnline/include/packets/PlayerDC.h

7 lines
185 B
C
Raw Normal View History

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