aboutsummaryrefslogtreecommitdiff
path: root/src/position.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/position.h')
-rw-r--r--src/position.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/position.h b/src/position.h
deleted file mode 100644
index 05d21fa..0000000
--- a/src/position.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#ifndef POSITION_H
-#define POSITION_H
-
-typedef struct Position
-{
- unsigned int x;
- unsigned int y;
-} Position;
-
-Position position_create(unsigned int x, unsigned int y);
-
-#endif