Files
tp/libs/SSystem/SComponent/c_m3d_g_cps.cpp
T

27 lines
696 B
C++
Raw Normal View History

2021-01-07 02:04:53 +01:00
/* c_m3d_g_cps.cpp autogenerated by split.py v0.3 at 2021-01-01 14:41:13.421387 */
#include "SComponent/c_m3d_g_cps.h"
// __ct__8cM3dGCpsFv
2021-01-26 23:48:47 +01:00
cM3dGCps::cM3dGCps(void) {}
2021-01-07 02:04:53 +01:00
// __dt__8cM3dGCpsFv
2021-01-26 23:48:47 +01:00
cM3dGCps::~cM3dGCps(void) {}
2021-01-07 02:04:53 +01:00
// Set__8cM3dGCpsFRC4cXyzRC4cXyzf
2021-01-26 23:48:47 +01:00
void cM3dGCps::Set(const cXyz& pStart, const cXyz& pEnd, f32 pUnkF) {
this->SetStartEnd(pStart, pEnd);
unk_0x1c = pUnkF;
2021-01-07 02:04:53 +01:00
}
// Set__8cM3dGCpsFRC9cM3dGCpsS
2021-01-26 23:48:47 +01:00
void cM3dGCps::Set(const cM3dGCpsS& other) {
this->SetStartEnd(other.mStart, other.mEnd);
unk_0x1c = other.unk_0x1c;
2021-01-07 02:04:53 +01:00
}
// SetCps__8cM3dGCpsFRC8cM3dGCps
2021-01-26 23:48:47 +01:00
void cM3dGCps::SetCps(const cM3dGCps& other) {
this->Set(other.GetStartP(), other.GetEndP(), other.unk_0x1c);
2021-01-07 02:04:53 +01:00
}