X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fwindows.h;fp=src%2Fclient%2Fwindows.h;h=e2d39c29770a5fdf360282dd7e476cfe5eb617a4;hb=0438f2fc5df337e4264103a86c1765ace9c6565a;hp=dd03d8b151138079c0dbd1884c632be391b0d026;hpb=7433f56ec2c6cc51bc497e3c0c67d2fe3e6ab64a;p=plomrogue diff --git a/src/client/windows.h b/src/client/windows.h index dd03d8b..e2d39c2 100644 --- a/src/client/windows.h +++ b/src/client/windows.h @@ -26,11 +26,16 @@ #include /* WINDOW, chtype */ #include /* 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 */