diff options
| author | Mario Kilies <MarioKilies@GMX.net> | 2011-01-13 22:14:28 +0100 |
|---|---|---|
| committer | Mario Kilies <MarioKilies@GMX.net> | 2011-01-13 22:14:28 +0100 |
| commit | 1cf0350c2bc286e56b3b71d19fb03e080e2e67cf (patch) | |
| tree | 39b14a08d4bff79ebf5e86fa489e0cad99c5d5f0 /src/ui.h | |
| parent | bd75e455a55c6e14c3f6eaf92308f4df0ce3bd2c (diff) | |
Moved display.[ch] to ui.[ch].
Diffstat (limited to 'src/ui.h')
| -rw-r--r-- | src/ui.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/ui.h b/src/ui.h new file mode 100644 index 0000000..3a63ddb --- /dev/null +++ b/src/ui.h @@ -0,0 +1,18 @@ +#ifndef OXEN_UI_H +#define OXEN_UI_H + +#include <curses.h> +#include "card.h" +#include "cardstack.h" +#include "tablestacks.h" +#include "hand.h" +#include "player_name_open_card_tuple.h" + +void ui_display_wnd_table_cards(const tablestacks ts, const bool highlight, const uint8_t highlighted_stack); +void ui_display_wnd_stack_points(const tablestacks ts); +void ui_display_wnd_current_state(const player_name_open_card_tuple pnoc[], const uint8_t num_players, const uint8_t active_player, const uint32_t score); +void ui_display_wnd_hand_cards(const hand h, const bool highlight, const uint8_t highlighted_card); +void ui_init(void); +void ui_fini(void); + +#endif // OXEN_UI_H |
