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