mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-06 15:27:40 +00:00
17 lines
256 B
C++
17 lines
256 B
C++
#pragma once
|
|
|
|
#include <basis/seadTypes.h>
|
|
|
|
namespace al {
|
|
|
|
class SaveDataSequenceBase {
|
|
public:
|
|
SaveDataSequenceBase();
|
|
|
|
virtual s32 threadFunc(const char* fileName) = 0;
|
|
};
|
|
|
|
static_assert(sizeof(SaveDataSequenceBase) == 0x8);
|
|
|
|
} // namespace al
|