/* Do not remove the headers from this file! see /USAGE for more info. */

inherit CONTAINER;

void setup() 
{
  set_id("hole");
  set_long("There isn't anything special about the hole.\n");
#ifdef USE_SIZE
  set_size(MEDIUM);
#endif
#ifdef USE_MASS
  set_mass(MEDIUM);
#endif
  set_max_capacity(LARGE);
}

void change_desc(string s){ set_in_room_desc(s); }

void change_max_capacity(int x){ set_max_capacity(x); }
