Include and link physfs properly.
[tuxanci.git] / src / client / panel.h
blob8ae92b392ce38a43ac688bbae621b45c6fef4fce
1 #ifndef PANEL_H
2 #define PANEL_H
4 #include "main.h"
5 #include "list.h"
7 #define PANEL_SCORE_LOCATION_X (WINDOW_SIZE_X / 2 - w / 2)
8 #define PANEL_SCORE_LOCATION_Y (WINDOW_SIZE_Y - 40)
10 #define PANEL_SHOT_WIDTH 4
11 #define PANEL_SHOT_HEIGHT 8
13 #define PANEL_LOCATION_X 0
14 #define PANEL_LOCATION_Y (WINDOW_SIZE_Y - g_panel->h)
16 #define PANEL_SHOT_FILL 0
17 #define PANEL_SHOT_EMPTY 1
18 #define PANEL_SHOT_LINE 2
20 extern bool_t panel_is_inicialized();
21 extern void panel_init();
22 extern void panel_draw(tux_t *tux_right, tux_t *tux_left);
23 extern void panel_quit();
25 #endif /* PANEL_H */