breakhack/src/position.h

14 lines
203 B
C
Raw Normal View History

2017-11-30 21:00:47 +01:00
#ifndef POSITION_H_
#define POSITION_H_
typedef struct {
int x;
int y;
} Position;
Position position_to_matrix_coords(Position*);
Position position_to_room_coords(Position*);
2017-11-30 21:00:47 +01:00
#endif // POSITION_H_