mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-04 17:09:45 -04:00
380407dd26
* fopMsgM_msgDataProc_c::stringSet work * Fix JPN * More stringSet work * work * get rid of fake temps * stringSet 99.99% * fopMsgM_msgDataProc_c::stringLength 100% * d_msg work * fix pal * fix message_paper, d_meter version diff fixes
38 lines
652 B
C++
38 lines
652 B
C++
#ifndef D_MESSAGE_PAPER_H
|
|
#define D_MESSAGE_PAPER_H
|
|
|
|
#include "dolphin/types.h"
|
|
#include "f_op/f_op_msg.h"
|
|
|
|
#if VERSION < VERSION_PAL
|
|
struct sub_msg3_class : public msg_class {
|
|
/* 0x0FC */ u8 m0FC[0xEE8 - 0x0FC];
|
|
};
|
|
|
|
class dmsg3_3d_c {
|
|
public:
|
|
dmsg3_3d_c();
|
|
~dmsg3_3d_c();
|
|
void setDummyTexture();
|
|
void set_mtx();
|
|
void exec();
|
|
void draw();
|
|
};
|
|
|
|
class dDlst_2DMSG3_c {
|
|
public:
|
|
void setActorP(sub_msg3_class*) {}
|
|
|
|
void draw();
|
|
void outFontDraw();
|
|
};
|
|
#endif
|
|
|
|
#if VERSION == VERSION_PAL
|
|
struct dMessage_Paper_c : public msg_class {
|
|
/* 0x0FC */ u8 m0FC[0x104 - 0x0FC];
|
|
};
|
|
#endif
|
|
|
|
#endif /* D_MESSAGE_PAPER_H */
|