mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-11 01:38:30 +00:00
19 lines
354 B
C++
19 lines
354 B
C++
#pragma once
|
|
|
|
#include <container/seadTList.h>
|
|
|
|
#include "Library/Draw/IUsePartsGraphics.h"
|
|
|
|
namespace al {
|
|
|
|
class GraphicsSystemInfo;
|
|
|
|
class PartsGraphics : public IUsePartsGraphics, public sead::TListNode<PartsGraphics*> {
|
|
public:
|
|
PartsGraphics(GraphicsSystemInfo* gfxSysInfo);
|
|
};
|
|
|
|
static_assert(sizeof(PartsGraphics) == 0x28);
|
|
|
|
} // namespace al
|