mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 19:25:16 +00:00
8 lines
190 B
C
8 lines
190 B
C
|
#pragma once
|
||
|
|
||
|
#include "Packet.h"
|
||
|
|
||
|
struct PACKED HolePunch : Packet {
|
||
|
HolePunch() : Packet() {this->mType = PacketType::HOLEPUNCH; mPacketSize = sizeof(HolePunch) - sizeof(Packet);};
|
||
|
};
|