Labyrinth/include/coor.h

9 lines
89 B
C
Raw Permalink Normal View History

2023-04-20 13:16:53 +02:00
#ifndef COOR_H
#define COOR_H
typedef struct coor{
int x;
int y;
} coor;
#endif