initializes the window
| 854 | |
| 855 | // initializes the window |
| 856 | void NewUIWindow::Create(int x, int y, int w, int h, int flags) { |
| 857 | UIWindow::Create(x, y, w, h, flags); |
| 858 | UIPrimativeItem item{GR_BLACK, NewUIWindow_alpha}; |
| 859 | UIWindow::SetBackItem(&item); |
| 860 | memset(&m_Chunk, 0, sizeof(m_Chunk)); |
| 861 | } |
| 862 | |
| 863 | // settings and state info |
| 864 |
no test coverage detected