mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-04 18:55:05 +00:00
22 lines
No EOL
456 B
C++
22 lines
No EOL
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
|