breakhack/src/position.h

10 lines
109 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;
#endif // POSITION_H_