mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-09 08:47:46 +00:00
17 lines
246 B
C++
17 lines
246 B
C++
#pragma once
|
|
|
|
namespace agl {
|
|
class DrawContext;
|
|
}
|
|
|
|
namespace al {
|
|
struct ExecuteSystemInitInfo {
|
|
ExecuteSystemInitInfo();
|
|
|
|
agl::DrawContext* drawCtx = nullptr;
|
|
};
|
|
|
|
static_assert(sizeof(ExecuteSystemInitInfo) == 0x8);
|
|
|
|
} // namespace al
|