SuperMarioOdysseyOnline/include/packets/PlayerDC.h
2022-06-16 14:33:18 -07:00

7 lines
No EOL
178 B
C

#pragma once
#include "Packet.h"
struct PlayerDC : Packet {
PlayerDC() : Packet() {this->mType = PacketType::PLAYERDC; mPacketSize = sizeof(PlayerDC) - sizeof(Packet);};
};