2021-03-28 22:49:05 +02:00
|
|
|
#ifndef MSG_SCRN_D_MSG_SCRN_PLACE_H
|
|
|
|
|
#define MSG_SCRN_D_MSG_SCRN_PLACE_H
|
|
|
|
|
|
2024-10-10 07:29:58 -07:00
|
|
|
#include "d/d_msg_scrn_base.h"
|
2023-07-10 02:34:35 +02:00
|
|
|
|
|
|
|
|
class dMsgScrnPlace_c : public dMsgScrnBase_c {
|
|
|
|
|
public:
|
2025-11-30 14:23:42 -08:00
|
|
|
dMsgScrnPlace_c();
|
2023-07-10 02:34:35 +02:00
|
|
|
|
2025-11-30 14:23:42 -08:00
|
|
|
virtual ~dMsgScrnPlace_c();
|
|
|
|
|
virtual void exec();
|
|
|
|
|
virtual void drawSelf();
|
|
|
|
|
virtual void fukiAlpha(f32);
|
|
|
|
|
virtual void fukiScale(f32);
|
|
|
|
|
virtual void fukiTrans(f32, f32);
|
|
|
|
|
virtual void fontAlpha(f32);
|
2023-07-10 02:34:35 +02:00
|
|
|
|
|
|
|
|
/* 0xC4 */ CPaneMgr* mpBaseParent;
|
|
|
|
|
/* 0xC8 */ CPaneMgr* mpFontParent;
|
|
|
|
|
/* 0xCC */ f32 mScaleX;
|
|
|
|
|
/* 0xD0 */ f32 mScaleY;
|
|
|
|
|
};
|
2021-03-28 22:49:05 +02:00
|
|
|
|
|
|
|
|
#endif /* MSG_SCRN_D_MSG_SCRN_PLACE_H */
|