c_structures/include/coor.h

9 lines
89 B
C
Raw Normal View History

2023-04-20 12:40:51 +02:00
#ifndef COOR_H
#define COOR_H
typedef struct coor{
int x;
int y;
} coor;
#endif