mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-19 09:45:14 +00:00
13 lines
No EOL
244 B
C
13 lines
No EOL
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] = {};
|
|
|
|
}; |