Files
tww/include/SSystem/SComponent/c_m2d_g_box.h
T
Luke Street adb95b135c Import project
Original repository: https://github.com/encounter/ww
2023-09-10 00:48:55 -04:00

15 lines
209 B
C++

#ifndef C_M2D_G_BOX_H
#define C_M2D_G_BOX_H
#include "SSystem/SComponent/c_xyz.h"
class cM2dGBox {
public:
cXy mP0, mP1;
void Set(cXy& pA, cXy& pB);
f32 GetLen(const cXy& pXy) const;
};
#endif