1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef C_M2D_G_BOX_H #define C_M2D_G_BOX_H #include "SSystem/SComponent/c_xyz.h" class cM2dGBox { public: cXy mP0, mP1; virtual ~cM2dGBox() {} void Set(cXy& pA, cXy& pB); f32 GetLen(const cXy& pXy) const; }; #endif