mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
9649319ec4
* Reorganize files into libs/{dolphin,JSystem,PowerPC_EABI_Support,revolution,TRK_MINNOW_DOLPHIN}
* Update configure.py and project.py for new libs structure
* Refactor `#include <dolphin/x.h>` -> `<x.h>`
* Remove `__REVOLUTION_SDK__` forwards from dolphin
* Fix dolphin/ references in revolution
* Wrap `#include <dolphin.h>` in `!__REVOLUTION_SDK__`
* Always build TRK against dolphin headers
* Resolve revolution SDK header resolution issues
34 lines
738 B
C++
34 lines
738 B
C++
#ifndef MSG_SCRN_D_MSG_SCRN_ARROW_H
|
|
#define MSG_SCRN_D_MSG_SCRN_ARROW_H
|
|
|
|
#include <types.h>
|
|
|
|
class J2DScreen;
|
|
class J2DAnmTransform;
|
|
class J2DAnmColor;
|
|
class J2DScreen;
|
|
class CPaneMgr;
|
|
|
|
class dMsgScrnArrow_c {
|
|
public:
|
|
dMsgScrnArrow_c();
|
|
virtual ~dMsgScrnArrow_c();
|
|
void draw();
|
|
void setPos(f32, f32);
|
|
void arwAnimeInit();
|
|
void arwAnimeMove();
|
|
void dotAnimeInit();
|
|
void dotAnimeMove();
|
|
|
|
/* 0x04 */ J2DScreen* mpScreen;
|
|
/* 0x08 */ J2DAnmTransform* mpBck;
|
|
/* 0x0C */ J2DAnmColor* mpBpk;
|
|
/* 0x10 */ CPaneMgr* mpParent_c;
|
|
/* 0x14 */ CPaneMgr* mpArw_c;
|
|
/* 0x18 */ CPaneMgr* mpDot_c;
|
|
/* 0x1C */ f32 mBckFrame;
|
|
/* 0x20 */ f32 mBpkFrame;
|
|
};
|
|
|
|
#endif /* MSG_SCRN_D_MSG_SCRN_ARROW_H */
|