Files
core/HwpFile/HwpDoc/Paragraph/Point.h
2024-12-03 20:12:50 +03:00

14 lines
111 B
C++

#ifndef POINT_H
#define POINT_H
namespace HWP
{
struct TPoint
{
int m_nX;
int m_nY;
};
}
#endif // POINT_H