OdysseyDecomp/lib/al/Library/Model/ModelDrawerStaticDepthShadow.h
2026-02-15 19:25:25 +01:00

21 lines
459 B
C++

#pragma once
#include "Library/Model/ModelDrawerBase.h"
namespace al {
class ModelCtrl;
class ModelDrawerStaticDepthShadow : public ModelDrawerBase {
public:
ModelDrawerStaticDepthShadow(const char* name);
void createTable() override;
void addModel(ModelCtrl* model) override;
void removeModel(ModelCtrl* model) override;
void draw() const override;
};
static_assert(sizeof(ModelDrawerStaticDepthShadow) == 0x50);
} // namespace al