room101/POINT.CPP

11 lines
135 B
C++

#include "point.hpp"
Point
PointCreate(int x, int y)
{
Point point;
point.x = x;
point.y = y;
return point;
}