14 lines
111 B
C++
14 lines
111 B
C++
#ifndef POINT_H
|
|
#define POINT_H
|
|
|
|
namespace HWP
|
|
{
|
|
struct TPoint
|
|
{
|
|
int m_nX;
|
|
int m_nY;
|
|
};
|
|
}
|
|
|
|
#endif // POINT_H
|