1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-06-20 22:25:24 +00:00
OpenDiablo2/src/OpenDiablo2.Common/include/OpenDiablo2.Common/D2Point.h

14 lines
187 B
C
Raw Normal View History

#ifndef OPENDIABLO2_COMMON_D2POINT_H
#define OPENDIABLO2_COMMON_D2POINT_H
namespace OpenDiablo2::Common {
struct D2Point {
int X;
int Y;
};
}
#endif // OPENDIABLO2_COMMON_D2POINT_H