mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-05 03:05:04 +00:00
22 lines
456 B
C
22 lines
456 B
C
|
#pragma once
|
||
|
|
||
|
namespace al {
|
||
|
class ByamlHeader {
|
||
|
public:
|
||
|
short getTag() const;
|
||
|
bool isInvertOrder() const;
|
||
|
short getVersion() const;
|
||
|
int getHashKeyTableOffset() const;
|
||
|
int getStringTableOffset() const;
|
||
|
int getDataOffset() const;
|
||
|
|
||
|
union {
|
||
|
int _0;
|
||
|
unsigned short mTag, mVersion;
|
||
|
};
|
||
|
|
||
|
int mHashKeyOffset; // _4
|
||
|
int mStringTableOffset; // _8
|
||
|
int mDataOffset; // _C
|
||
|
};
|
||
|
}; // namespace al
|