mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 15:00:55 -04:00
178194ccb2
* 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>
25 lines
708 B
C++
25 lines
708 B
C++
#ifndef MSG_SCRN_D_MSG_SCRN_PLACE_H
|
|
#define MSG_SCRN_D_MSG_SCRN_PLACE_H
|
|
|
|
#include "d/d_msg_scrn_base.h"
|
|
|
|
class dMsgScrnPlace_c : public dMsgScrnBase_c {
|
|
public:
|
|
/* 802463CC */ dMsgScrnPlace_c();
|
|
|
|
/* 802467C4 */ virtual ~dMsgScrnPlace_c();
|
|
/* 80246924 */ virtual void exec();
|
|
/* 80246A44 */ virtual void drawSelf();
|
|
/* 80246A9C */ virtual void fukiAlpha(f32);
|
|
/* 80246B28 */ virtual void fukiScale(f32);
|
|
/* 80246B2C */ virtual void fukiTrans(f32, f32);
|
|
/* 80246B30 */ virtual void fontAlpha(f32);
|
|
|
|
/* 0xC4 */ CPaneMgr* mpBaseParent;
|
|
/* 0xC8 */ CPaneMgr* mpFontParent;
|
|
/* 0xCC */ f32 mScaleX;
|
|
/* 0xD0 */ f32 mScaleY;
|
|
};
|
|
|
|
#endif /* MSG_SCRN_D_MSG_SCRN_PLACE_H */
|