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