mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-25 12:45:17 +00:00
27 lines
477 B
C++
27 lines
477 B
C++
#pragma once
|
|
|
|
#include <basis/seadTypes.h>
|
|
#include <container/seadTList.h>
|
|
|
|
namespace sead {
|
|
class WriteStream;
|
|
}
|
|
|
|
namespace al {
|
|
|
|
class ByamlWriterBigData;
|
|
|
|
class ByamlWriterBigDataList {
|
|
public:
|
|
ByamlWriterBigDataList();
|
|
virtual ~ByamlWriterBigDataList();
|
|
u32 calcPackSize() const;
|
|
void addData(al::ByamlWriterBigData*);
|
|
int setOffset(int);
|
|
void write(sead::WriteStream*);
|
|
|
|
private:
|
|
sead::TList<ByamlWriterBigData*> mList;
|
|
};
|
|
|
|
} // namespace al
|