| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | namespace agl { |
| 4 | class DrawContext; |
| 5 | } |
| 6 | |
| 7 | namespace al { |
| 8 | struct ExecuteSystemInitInfo { |
| 9 | ExecuteSystemInitInfo(); |
| 10 | |
| 11 | agl::DrawContext* drawCtx; |
| 12 | }; |
| 13 | |
| 14 | static_assert(sizeof(ExecuteSystemInitInfo) == 0x8); |
| 15 | |
| 16 | } // namespace al |
| 17 |