SuperMarioOdysseyOnline/include/packets/ShineCollect.h

9 lines
247 B
C
Raw Permalink Normal View History

2022-06-16 21:33:18 +00:00
#pragma once
#include "Packet.h"
struct PACKED ShineCollect : Packet {
2022-06-16 21:33:18 +00:00
ShineCollect() : Packet() {this->mType = PacketType::SHINECOLL; mPacketSize = sizeof(ShineCollect) - sizeof(Packet);};
int shineId = -1;
2022-06-28 10:26:26 +00:00
bool1 isGrand = false;
2022-06-16 21:33:18 +00:00
};