mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
a6e76c0841
* some wii OS fixes * remove old dol2asm comments * remove dol2asm.h * remove function address comments * normalize ATTRIBUTE_ALIGN usage * DECL_WEAK macro * fix gcc attribute weak macro * wrap more mwcc specific things in ifdefs * fixes * fix revo sdk version flags * fixes
25 lines
588 B
C++
25 lines
588 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:
|
|
dMsgScrnPlace_c();
|
|
|
|
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);
|
|
|
|
/* 0xC4 */ CPaneMgr* mpBaseParent;
|
|
/* 0xC8 */ CPaneMgr* mpFontParent;
|
|
/* 0xCC */ f32 mScaleX;
|
|
/* 0xD0 */ f32 mScaleY;
|
|
};
|
|
|
|
#endif /* MSG_SCRN_D_MSG_SCRN_PLACE_H */
|