blob: 0cf88267c4ee0fcc321d40e85995181133b22bfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef UI_ELEMENTS_H
#define UI_ELEMENTS_H 1
#include "config.h"
void
init_ui_elements(WINDOW *wnd_main, unsigned int max_x, unsigned int max_y);
void
free_ui_elements(void);
#endif
|