X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/copy_free?a=blobdiff_plain;f=windows.h;h=e3f4eb684fb21f4d5659fe816bfd7dc441df10ac;hb=d17e8bd46c19351ac493f70a2f2a04655ab6a5e7;hp=690ba44eebdf9f36c490be14449fa0bf9b3e8b1d;hpb=b5a0fd1d2cc0c53f44fb93cc3b757aab0a797768;p=plomrogue diff --git a/windows.h b/windows.h index 690ba44..e3f4eb6 100644 --- a/windows.h +++ b/windows.h @@ -2,8 +2,7 @@ struct WinMeta { struct Win * chain_start; struct Win * chain_end; struct Win * active; - int height; - int width; }; + int height; }; struct Win { struct Win * prev; @@ -11,8 +10,6 @@ struct Win { int width; int height; WINDOW * curses_win; - char border_left; - char border_down; char * title; void (* draw) (struct Win *); void * data; };