mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-23 06:54:16 -04:00
adb95b135c
Original repository: https://github.com/encounter/ww
15 lines
209 B
C++
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
|