mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-05 03:05:04 +00:00
19 lines
303 B
C
19 lines
303 B
C
|
#pragma once
|
||
|
|
||
|
namespace al {
|
||
|
class ByamlHashPair {
|
||
|
public:
|
||
|
int getKey(bool) const;
|
||
|
char getType() const;
|
||
|
int getValue(bool) const;
|
||
|
|
||
|
union {
|
||
|
const int mData;
|
||
|
struct {
|
||
|
const char _0, _1, _2, mType;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
const int mValue;
|
||
|
};
|
||
|
}; // namespace al
|