mirror of
https://github.com/zeldaret/botw
synced 2026-07-08 05:40:38 -04:00
25 lines
496 B
C++
25 lines
496 B
C++
#pragma once
|
|
|
|
#include <basis/seadTypes.h>
|
|
#include "KingSystem/Utils/Thread/MessageTransceiverId.h"
|
|
|
|
namespace ksys {
|
|
|
|
class MesTransceiverIdGen {
|
|
public:
|
|
MesTransceiverIdGen();
|
|
virtual ~MesTransceiverIdGen();
|
|
virtual MesTransceiverId* getId();
|
|
virtual bool m1(void*);
|
|
virtual void m2(void* x);
|
|
virtual void setField0(const u32& value) { mTransceiverId._0 = value; }
|
|
|
|
protected:
|
|
MesTransceiverId mTransceiverId;
|
|
|
|
private:
|
|
static u32 sId;
|
|
};
|
|
|
|
} // namespace ksys
|