c_structures/include/coor.h

9 lines
89 B
C

#ifndef COOR_H
#define COOR_H
typedef struct coor{
int x;
int y;
} coor;
#endif