SuperMarioOdysseyOnline/include/packets/CaptureInf.h

13 lines
247 B
C

#pragma once
#include "Packet.h"
struct PACKED CaptureInf : Packet {
CaptureInf() : Packet() {
this->mType = PacketType::CAPTUREINF;
mPacketSize = sizeof(CaptureInf) - sizeof(Packet);
};
char hackName[0x20] = {};
};