Files
ss/include/d/d_rope_model.h
T
Elijah Thomas e1aad98a2d progress on d_a_obj_ivy_rope (#109)
* init

* couple more funcs

* progress

* smol progress

* smol progress 2

* Dont get your hopes up, I just had some lingering things :P

* fix merge
2025-05-10 17:23:35 -04:00

27 lines
572 B
C++

#ifndef D_ROPE_MODEL_H
#define D_ROPE_MODEL_H
#include "m/m3d/m_bline.h"
//
// The names in this file are made up based on the usage in setupGX
//
class dMultiMat_c : public m3d::blineMat_c {
public:
dMultiMat_c() {}
virtual void setupGX(bool bTransparent) override;
};
class dSkinMat_c : public m3d::blineMat_c {
public:
dSkinMat_c() : mField_0x4C(-1), mField_0x50(0xFF), mField_0x54(0xFF) {}
virtual void setupGX(bool bTransparent) override;
/* 0x4C */ s32 mField_0x4C;
/* 0x50 */ s32 mField_0x50;
/* 0x54 */ s32 mField_0x54;
};
#endif