X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=windows.h;h=262c17602a6cd47bd3b4905406ec90803cdcf5ab;hb=4278fa073915777094328bc6575cdcc1f849f9f1;hp=690ba44eebdf9f36c490be14449fa0bf9b3e8b1d;hpb=b5a0fd1d2cc0c53f44fb93cc3b757aab0a797768;p=plomrogue diff --git a/windows.h b/windows.h index 690ba44..262c176 100644 --- a/windows.h +++ b/windows.h @@ -1,9 +1,12 @@ struct WinMeta { + WINDOW * screen; + WINDOW * pad; + int pad_offset; struct Win * chain_start; struct Win * chain_end; struct Win * active; - int height; - int width; }; + int width; + int height; }; struct Win { struct Win * prev; @@ -11,8 +14,6 @@ struct Win { int width; int height; WINDOW * curses_win; - char border_left; - char border_down; char * title; void (* draw) (struct Win *); void * data; };