room101/POINT.HPP

12 lines
125 B
Text
Raw Normal View History

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