get more d_ TUs to compile

This commit is contained in:
LagoLunatic
2024-02-29 20:00:41 -05:00
parent bda17503da
commit 568630b072
14 changed files with 186 additions and 65 deletions
+28
View File
@@ -0,0 +1,28 @@
#ifndef D_A_NPC_MK_STATIC_H
#define D_A_NPC_MK_STATIC_H
#include "dolphin/types.h"
class fopAc_ac_c;
class dNpc_PathRun_c;
class dCcD_Cyl;
class cXyz;
class daNpc_Mk_Static_c {
public:
void aroundWalk(fopAc_ac_c*, fopAc_ac_c*, u8);
void turnPath(fopAc_ac_c*, dNpc_PathRun_c*, u8);
void chkPath(fopAc_ac_c*, dNpc_PathRun_c*, u8);
void walkPath(fopAc_ac_c*, dNpc_PathRun_c*, u8);
void getSpeedF(f32, f32);
void init(u8, u16);
void goFarLink_3(fopAc_ac_c*, dNpc_PathRun_c*);
void goFarLink_2(fopAc_ac_c*, dNpc_PathRun_c*);
void runaway_com2(dNpc_PathRun_c*, u8);
void runAwayProc(fopAc_ac_c*, dNpc_PathRun_c*, dCcD_Cyl*, s16*);
void chkGameSet();
void setRndPathPos(fopAc_ac_c*, dNpc_PathRun_c*);
void chkPointPass(cXyz*, cXyz*, cXyz*);
};
#endif /* D_A_NPC_MK_STATIC_H */
+56
View File
@@ -0,0 +1,56 @@
#ifndef D_2DNUMBER_H
#define D_2DNUMBER_H
#include "dolphin/types.h"
struct ResTIMG;
class JUTFont;
class fopMsgM_pane_class;
class dDlst_2DNumber_c {
public:
dDlst_2DNumber_c();
~dDlst_2DNumber_c();
void init(int, s16, s16, s16, s16, u8);
void draw();
};
class dDlst_2DMinigame_c {
public:
void init(ResTIMG*, ResTIMG*);
void draw();
};
class dDlst_2DBattery_c {
public:
void init(ResTIMG*, ResTIMG*, ResTIMG*, ResTIMG*);
void setRotate(float);
void draw();
};
class dDlst_2DObject_c {
public:
void init(ResTIMG*, ResTIMG*);
void draw();
};
class dDlst_2DOutFont_c {
public:
void initial();
void setPane(JUTFont*, fopMsgM_pane_class*, fopMsgM_pane_class*, fopMsgM_pane_class*, fopMsgM_pane_class*);
void setPaneEx(JUTFont*, fopMsgM_pane_class*, fopMsgM_pane_class*, fopMsgM_pane_class*, fopMsgM_pane_class*, char*);
void setRuby(JUTFont*, fopMsgM_pane_class*);
void setRubyEx(JUTFont*, fopMsgM_pane_class*, char*);
void charWidth(int);
void rubyCharWidth(int);
void iconset(int, char**);
void messageSet(u32);
void outFontStickAnime1(u8);
void outFontStickAnime2(u8, u8);
void outFontStickAnime3(u8, u8);
void outFontStickAnimePiece(u8, u8);
void move();
void setAlpha(u8);
};
#endif /* D_2DNUMBER_H */
+16
View File
@@ -0,0 +1,16 @@
#ifndef D_SPLINE_PATH_H
#define D_SPLINE_PATH_H
#include "dolphin/types.h"
class cXyz;
class d2DBSplinePath {
public:
void Init(s32, s32);
void Step();
void Calc(cXyz*);
void Calc(f32*);
};
#endif /* D_SPLINE_PATH_H */
+12
View File
@@ -0,0 +1,12 @@
#ifndef D_WATER_MARK_H
#define D_WATER_MARK_H
#include "dolphin/types.h"
class dWaterMark_c {
public:
void setMatrix();
void create();
};
#endif /* D_WATER_MARK_H */
+13
View File
@@ -0,0 +1,13 @@
#ifndef D_WIND_ARROW_H
#define D_WIND_ARROW_H
#include "dolphin/types.h"
class dWindArrow_c {
public:
void createHeap();
void adjustHeap();
void draw();
};
#endif /* D_WIND_ARROW_H */
+15
View File
@@ -0,0 +1,15 @@
#ifndef D_WPILLAR_H
#define D_WPILLAR_H
#include "dolphin/types.h"
class dWpillar_c {
public:
void jointCallBack(int);
void draw();
void execute();
void wp_delete();
void create();
};
#endif /* D_WPILLAR_H */
+17
View File
@@ -0,0 +1,17 @@
#ifndef D_WPOT_WATER_H
#define D_WPOT_WATER_H
#include "dolphin/types.h"
#include "d/d_particle.h"
class dWpotWater_c {
public:
};
class dWpotWater_EcallBack {
public:
void draw(JPABaseEmitter*);
};
#endif /* D_WPOT_WATER_H */