home · contact · privacy
Maps are always squares, therefore define only their edge lengths.
[plomrogue] / src / common / yx_uint16.h
diff --git a/src/common/yx_uint16.h b/src/common/yx_uint16.h
deleted file mode 100644 (file)
index 05cf29e..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-/* yx_uint16.h
- *
- * Used for window / screen maps and game map size.
- */
-
-#ifndef YX_UINT16_H
-#define YX_UINT16_H
-
-#include <stdint.h> /* for uint16_t */
-
-
-
-/* Coordinates for maps of max. 65536x65536 cells. */
-struct yx_uint16
-{
-    uint16_t y;
-    uint16_t x;
-};
-
-
-
-#endif