mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 11:15:15 +00:00
7 lines
No EOL
178 B
C
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);};
|
|
}; |