room101/POINT.HPP

11 lines
125 B
C++

#ifndef __POINT_H
#define __POINT_H
typedef struct
{
int x, y;
} Point;
Point PointCreate(int, int);
#endif