1
0
aoc-2022/point.h
2022-12-11 01:05:37 +02:00

9 lines
91 B
C

#ifndef POINT_H_
#define POINT_H_
typedef struct {
int x, y;
} Point;
#endif //POINT_H_