mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-05 03:05:04 +00:00
17 lines
No EOL
398 B
C
17 lines
No EOL
398 B
C
#pragma once
|
|
|
|
#include "Packet.h"
|
|
#include "sead/basis/seadTypes.h"
|
|
|
|
enum TagUpdateType : u8 {
|
|
TIME = 1 << 0,
|
|
STATE = 1 << 1
|
|
};
|
|
|
|
struct PACKED TagInf : Packet {
|
|
TagInf() : Packet() { this->mType = PacketType::TAGINF; mPacketSize = sizeof(TagInf) - sizeof(Packet);};
|
|
TagUpdateType updateType;
|
|
bool1 isIt = false;
|
|
u8 seconds;
|
|
u16 minutes;
|
|
}; |