summaryrefslogtreecommitdiff
path: root/include/SSystem/SComponent/c_m2d_g_box.h
blob: c58917a06a42b039347751f3e2e7223dfc0bd6c9 (plain)
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