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