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