Files
tp/include/d/d_spline_path.h
T
Jcw87 221f40e609 Remove #includes from headers (#334)
* add "global.h" to files that use it

* add MSL_C includes to files that use them

* remove dolphin includes from headers that don't need them

* remove JSupport includes from headers that don't need them

* remove JKernel includes from headers that don't need them

* remove JUtility includes from headers that don't need them

* remove J3D includes from headers that don't need them

* remove J2D includes from headers that don't need them

* remove JAudio2 includes from headers that don't need them

* remove Z2AudioLib includes from headers that don't need them

* remove JMessage includes from headers that don't need them

* remove JParticle includes from headers that don't need them

* remove SComponent includes from headers that don't need them

* remove dol includes from headers that don't need them

* sort includes
2023-05-12 12:10:14 -07:00

42 lines
985 B
C++

#ifndef D_D_SPLINE_PATH_H
#define D_D_SPLINE_PATH_H
#include "SSystem/SComponent/c_xyz.h"
#include "dolphin/types.h"
struct dPath;
struct dPathCurve {
/* 80097C5C */ void Init(dPath*);
/* 80097C74 */ void bSpline2(f32);
/* 0x00 */ int field_0x00;
/* 0x00 */ int field_0x04;
/* 0x08 */ dPath* mpPath;
};
class d2DBSplinePath {
public:
/* 80097878 */ void Init(s32, s32);
/* 80097904 */ void Step();
/* 80097B20 */ f32 Calc(f32*);
/* 80097A6C */ void Calc(cXyz*);
/* 80097B68 */ void Spot(f32*, f32);
/* 0x00 */ s32 field_0x00;
/* 0x04 */ s32 field_0x04;
/* 0x08 */ s32 field_0x08;
/* 0x0C */ s32 field_0x0c;
/* 0x10 */ f32 field_0x10;
/* 0x14 */ f32 field_0x14;
/* 0x18 */ f32 field_0x18;
/* 0x1C */ f32 field_0x1c;
/* 0x20 */ u32 field_0x20;
/* 0x24 */ int field_0x24;
/* 0x28 */ int field_0x28;
/* 0x2C */ int field_0x2c;
/* 0x30 */ void* field_0x30;
};
#endif /* D_D_SPLINE_PATH_H */