home · contact · privacy
Maps are always squares, therefore define only their edge lengths.
[plomrogue] / src / client / windows.h
index dd03d8b151138079c0dbd1884c632be391b0d026..e2d39c29770a5fdf360282dd7e476cfe5eb617a4 100644 (file)
 
 #include <ncurses.h> /* WINDOW, chtype */
 #include <stdint.h> /* uint8_t, int16_t, uint16_t, uint32_t */
-#include "../common/yx_uint16.h" /* yx_uint16 struct */
 #include "keybindings.h" /* struct KeyBindingDB */
 
 
 
+struct yx_uint16
+{
+    uint16_t y;
+    uint16_t x;
+};
+
 struct WinDB
 {
     WINDOW * t_screen; /* ncurses' pointer to the terminal screen */