mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-25 12:45:17 +00:00
13 lines
196 B
C
13 lines
196 B
C
|
#pragma once
|
||
|
|
||
|
#include <basis/seadTypes.h>
|
||
|
|
||
|
namespace al {
|
||
|
class ByamlContainerHeader {
|
||
|
public:
|
||
|
int getType() const;
|
||
|
int getCount(bool) const;
|
||
|
|
||
|
u32 mType; // _0
|
||
|
};
|
||
|
}; // namespace al
|