mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-10 17:29:13 +00:00
26 lines
475 B
C++
26 lines
475 B
C++
#pragma once
|
|
|
|
#include "Library/Model/ModelDrawerBase.h"
|
|
|
|
namespace al {
|
|
class ModelCtrl;
|
|
|
|
class ModelDrawerChromakey : public ModelDrawerBase {
|
|
public:
|
|
ModelDrawerChromakey(const char* name, bool, bool, bool, bool);
|
|
|
|
void createTable() override;
|
|
void registerModel(ModelCtrl*) override;
|
|
void draw() const override;
|
|
|
|
private:
|
|
bool _50;
|
|
bool _51;
|
|
bool _52;
|
|
bool _53;
|
|
};
|
|
|
|
static_assert(sizeof(ModelDrawerChromakey) == 0x58);
|
|
|
|
} // namespace al
|