mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 11:15:15 +00:00
13 lines
244 B
C
13 lines
244 B
C
|
#pragma once
|
||
|
|
||
|
#include "Packet.h"
|
||
|
|
||
|
struct CaptureInf : Packet {
|
||
|
CaptureInf() : Packet() {
|
||
|
this->mType = PacketType::CAPTUREINF;
|
||
|
mPacketSize = sizeof(CaptureInf) - sizeof(Packet);
|
||
|
};
|
||
|
|
||
|
char hackName[0x20] = {};
|
||
|
|
||
|
};
|