mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-23 09:04:21 +00:00
Project/Execute: Implement ExecuteSystemInitInfo (#683)
This commit is contained in:
parent
96361fdd22
commit
ee8abadb20
|
|
@ -292788,7 +292788,7 @@ Project/Execute/ExecuteSystemInitInfo.o:
|
|||
label:
|
||||
- _ZN2al21ExecuteSystemInitInfoC1Ev
|
||||
- _ZN2al21ExecuteSystemInitInfoC2Ev
|
||||
status: NotDecompiled
|
||||
status: Matching
|
||||
Project/Execute/ExecutorActorDraw.o:
|
||||
'.text':
|
||||
- offset: 0xa5e6c4
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@
|
|||
#include "Library/Draw/GraphicsSystemInfo.h"
|
||||
#include "Library/Effect/EffectSystem.h"
|
||||
#include "Library/Execute/ExecuteDirector.h"
|
||||
#include "Library/Execute/ExecuteSystemInitInfo.h"
|
||||
#include "Library/Execute/ExecuteTableHolderUpdate.h"
|
||||
#include "Library/LiveActor/LiveActorGroup.h"
|
||||
#include "Library/Model/ModelDisplayListController.h"
|
||||
|
|
@ -26,6 +25,7 @@
|
|||
#include "Library/Stage/StageSwitchDirector.h"
|
||||
#include "Project/Clipping/ClippingDirector.h"
|
||||
#include "Project/Execute/ExecuteAsyncExecutor.h"
|
||||
#include "Project/Execute/ExecuteSystemInitInfo.h"
|
||||
#include "Project/Gravity/GravityHolder.h"
|
||||
#include "Project/HitSensor/HitSensorDirector.h"
|
||||
|
||||
|
|
|
|||
7
lib/al/Project/Execute/ExecuteSystemInitInfo.cpp
Normal file
7
lib/al/Project/Execute/ExecuteSystemInitInfo.cpp
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
#include "Project/Execute/ExecuteSystemInitInfo.h"
|
||||
|
||||
namespace al {
|
||||
|
||||
ExecuteSystemInitInfo::ExecuteSystemInitInfo() = default;
|
||||
|
||||
} // namespace al
|
||||
|
|
@ -8,7 +8,7 @@ namespace al {
|
|||
struct ExecuteSystemInitInfo {
|
||||
ExecuteSystemInitInfo();
|
||||
|
||||
agl::DrawContext* drawCtx;
|
||||
agl::DrawContext* drawCtx = nullptr;
|
||||
};
|
||||
|
||||
static_assert(sizeof(ExecuteSystemInitInfo) == 0x8);
|
||||
Loading…
Reference in a new issue