mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
12eb254d76
* switch to dtk setup * some cleanup / fixes * cleanup d_a_alink literals * Restore doxygen, update CI & README.md (#1) * Fix build image ref (#2) --------- Co-authored-by: Luke Street <luke@street.dev>
34 lines
945 B
C++
34 lines
945 B
C++
#ifndef MSG_SCRN_D_MSG_SCRN_LIGHT_H
|
|
#define MSG_SCRN_D_MSG_SCRN_LIGHT_H
|
|
|
|
#include "JSystem/JUtility/TColor.h"
|
|
|
|
class J2DScreen;
|
|
class J2DAnmTransform;
|
|
class J2DAnmColorKey;
|
|
class CPaneMgr;
|
|
|
|
class dMsgScrnLight_c {
|
|
public:
|
|
/* 80245934 */ dMsgScrnLight_c(u8, u8);
|
|
/* 80245C04 */ void draw(f32*, f32, f32, f32, f32, f32, u8);
|
|
/* 80245F90 */ void draw(f32*, f32, f32, f32, f32, f32, f32, JUtility::TColor,
|
|
JUtility::TColor);
|
|
/* 802460DC */ void drawCommon(f32, f32, f32, f32, f32);
|
|
|
|
/* 80245B00 */ virtual ~dMsgScrnLight_c();
|
|
|
|
/* 0x04 */ J2DScreen* mpScreen;
|
|
/* 0x08 */ J2DAnmTransform* mpBck;
|
|
/* 0x0C */ J2DAnmColorKey* mpBpk;
|
|
/* 0x10 */ CPaneMgr* mpParent_c;
|
|
/* 0x14 */ f32 mBckFrame;
|
|
/* 0x18 */ f32 mBpkFrame;
|
|
/* 0x1C */ f32 mAlpha;
|
|
/* 0x20 */ u8 mColorType;
|
|
/* 0x21 */ u8 field_0x21;
|
|
/* 0x22 */ bool mPlayAnim;
|
|
};
|
|
|
|
#endif /* MSG_SCRN_D_MSG_SCRN_LIGHT_H */
|