d_a_tag_sppath OK (#2151)

This commit is contained in:
doop
2024-05-08 18:14:04 -04:00
committed by GitHub
parent 06ba045f1d
commit c7708a6beb
16 changed files with 213 additions and 1464 deletions
+3
View File
@@ -24,6 +24,9 @@ public:
void set(const Vec& i_start, const Vec& i_end) { SetStartEnd(i_start, i_end); }
const cXyz& GetStartP(void) const { return mStart; }
cXyz& GetStartP(void) { return mStart; }
cXyz& GetStart() { return mStart; }
const cXyz& GetStart() const { return mStart; }
const cXyz& GetEndP(void) const { return mEnd; }
cXyz& GetEndP(void) { return mEnd; }
cXyz& GetEnd() { return mEnd; }
@@ -1,15 +1,26 @@
#ifndef D_A_TAG_SPPATH_H
#define D_A_TAG_SPPATH_H
#include "f_op/f_op_actor.h"
#include "d/cc/d_cc_d.h"
#include "d/com/d_com_inf_game.h"
#include "d/d_path.h"
class daTagSppath_c : public fopAc_ac_c {
public:
/* 80D61C18 */ void create();
/* 80D61C18 */ int create();
/* 80D61EC4 */ ~daTagSppath_c();
/* 80D62024 */ void getNearPathPos(cXyz*, dPath*);
/* 80D629C0 */ void execute();
/* 80D62024 */ int getNearPathPos(cXyz*, dPath*);
/* 80D629C0 */ int execute();
/* 0x568 */ dPath* mpInitPath;
/* 0x56C */ dPath* mpBestPath;
/* 0x570 */ dCcD_Cyl mCyl;
/* 0x6AC */ dCcD_Stts mStts;
/* 0x6E8 */ u8 field_0x6e8;
/* 0x6E9 */ u8 mSwNo1;
/* 0x6EA */ u8 mSwNo2;
/* 0x6EC */ u16 mBestNo;
/* 0x6F0 */ f32 mHeight;
};
#endif /* D_A_TAG_SPPATH_H */