/* * Copyright (C) 2002-2007 The Warp Rogue Team * Part of the Warp Rogue Project * * This software is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License. * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY. * * See the license.txt file for more details. */ /* * Module Name: Ui * Description: - */ /* * Command bars */ typedef int N_COMMANDS; void command_bar_clear(void); void command_bar_set(N_COMMANDS, ...); void command_bar_add(N_COMMANDS, ...); void command_bar_add_move_commands(void); COMMAND command_bar_command(KEY_CODE); COMMAND command_bar_get_command(void); COMMAND command_bar_item(int); void use_game_screen_command_bar(void); COMMAND game_screen_command(int);