Add missing internal object functions, hard-coded for ncurses for now.

This commit is contained in:
paul 1995-09-13 18:04:35 +00:00
parent 65ee16fd5b
commit 110bf828a7

View File

@ -371,3 +371,21 @@ add_menu_option(MENU_OBJECT *menu, char *option)
return (++menu->no_options);
}
/* Default object functions */
void
draw_box(OBJECT *object)
{
/* Gross hack for now */
ncurses_draw_box(object);
}
void
draw_shadow(OBJECT *object)
{
/* Gross hack for now */
ncurses_draw_shadow(object);
}