Files
tp/include/JSystem/J3DGraphBase/J3DStruct.h
T

35 lines
817 B
C++
Raw Normal View History

2021-03-28 22:49:05 +02:00
#ifndef J3DSTRUCT_H
#define J3DSTRUCT_H
2021-06-12 15:22:36 -07:00
#include "SSystem/SComponent/c_xyz.h"
#include "dolphin/gx/GX.h"
2021-03-28 22:49:05 +02:00
#include "dolphin/types.h"
2021-08-17 02:59:00 +02:00
class J3DLightInfo {
public:
J3DLightInfo(J3DLightInfo const& other) { *this = other; }
2021-06-12 15:22:36 -07:00
/* 803256C4 */ void operator=(J3DLightInfo const&);
2021-08-17 02:59:00 +02:00
/* 0x00 */ Vec mLightPosition;
/* 0x0C */ Vec mLightDirection;
2021-06-12 15:22:36 -07:00
/* 0x18 */ _GXColor mColor;
/* 0x1C */ f32 mA0;
/* 0x20 */ f32 mA1;
/* 0x24 */ f32 mA2;
/* 0x28 */ f32 mK0;
/* 0x2C */ f32 mK1;
/* 0x30 */ f32 mK2;
}; // Size = 0x34
2021-08-17 02:59:00 +02:00
extern "C" extern J3DLightInfo const j3dDefaultLightInfo;
class J3DLightObj {
public:
/* 80018C0C */ J3DLightObj() : mInfo(j3dDefaultLightInfo) {}
2021-06-12 15:22:36 -07:00
/* 0x00 */ J3DLightInfo mInfo;
/* 0x34 */ u8 field_0x34[64];
}; // Size = 0x74
2021-03-28 22:49:05 +02:00
#endif /* J3DSTRUCT_H */