SuperMarioOdysseyOnline/include/packets/TagInf.h

17 lines
398 B
C
Raw Normal View History

2022-06-16 21:33:18 +00:00
#pragma once
#include "Packet.h"
#include "sead/basis/seadTypes.h"
enum TagUpdateType : u8 {
TIME = 1 << 0,
STATE = 1 << 1
};
struct PACKED TagInf : Packet {
2022-06-16 21:33:18 +00:00
TagInf() : Packet() { this->mType = PacketType::TAGINF; mPacketSize = sizeof(TagInf) - sizeof(Packet);};
TagUpdateType updateType;
2022-06-28 10:26:26 +00:00
bool1 isIt = false;
2022-06-16 21:33:18 +00:00
u8 seconds;
u16 minutes;
};