Files
tp/include/SComponent/c_m3d_g_cps.h
T

18 lines
306 B
C++
Raw Normal View History

#ifndef C_M3D_G_CPS_H_
#define C_M3D_G_CPS_H_
2021-01-07 02:04:53 +01:00
#include "SComponent/c_xyz.h"
#include "global.h"
struct cM3dGCpsS;
class cM3dGCps {
public:
cM3dGCps(void);
~cM3dGCps(void);
void Set(const cXyz&, const cXyz&, float);
void Set(const cM3dGCpsS&);
void SetCps(const cM3dGCps&);
};
#endif