mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-09 16:58:22 +00:00
15 lines
204 B
C++
15 lines
204 B
C++
#pragma once
|
|
|
|
#include <basis/seadTypes.h>
|
|
|
|
namespace al {
|
|
class ByamlContainerHeader {
|
|
public:
|
|
s32 getType() const;
|
|
s32 getCount(bool isRev) const;
|
|
|
|
private:
|
|
u32 mType;
|
|
};
|
|
} // namespace al
|