mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-05 03:05:04 +00:00
9 lines
No EOL
247 B
C
9 lines
No EOL
247 B
C
#pragma once
|
|
|
|
#include "Packet.h"
|
|
|
|
struct PACKED ShineCollect : Packet {
|
|
ShineCollect() : Packet() {this->mType = PacketType::SHINECOLL; mPacketSize = sizeof(ShineCollect) - sizeof(Packet);};
|
|
int shineId = -1;
|
|
bool1 isGrand = false;
|
|
}; |