1 /* 2 * Copyright 2005, Ingo Weinhold <bonefish@cs.tu-berlin.de>. 3 * All rights reserved. Distributed under the terms of the MIT License. 4 */ 5 6 #ifndef GENERIC_TEXT_CONSOLE_H 7 #define GENERIC_TEXT_CONSOLE_H 8 9 class Menu; 10 class MenuItem; 11 12 void platform_generic_update_text_menu_item(Menu *menu, MenuItem *item); 13 void platform_generic_run_text_menu(Menu *menu); 14 15 #endif /* GENERIC_TEXT_CONSOLE_H */ 16