mirror of
https://github.com/zeldaret/botw
synced 2026-06-01 09:47:27 -04:00
Initial commit
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
#pragma once
|
||||
|
||||
#include <basis/seadTypes.h>
|
||||
|
||||
#include "KingSystem/Utils/Types.h"
|
||||
|
||||
namespace ksys {
|
||||
|
||||
namespace mes {
|
||||
|
||||
struct TransceiverId {
|
||||
TransceiverId();
|
||||
|
||||
TransceiverId& operator=(const TransceiverId& other) {
|
||||
_0 = other._0;
|
||||
_4 = other._4;
|
||||
_8 = other._8;
|
||||
_10 = other._10;
|
||||
return *this;
|
||||
}
|
||||
|
||||
u32 _0;
|
||||
u32 _4;
|
||||
void* _8;
|
||||
void* _10;
|
||||
};
|
||||
KSYS_CHECK_SIZE_NX150(TransceiverId, 0x18);
|
||||
|
||||
} // namespace mes
|
||||
|
||||
} // namespace ksys
|
||||
Reference in New Issue
Block a user