tbamud/src/asciimap.h

24 lines
1,022 B
C
Raw Normal View History

2008-04-13 23:02:15 +00:00
/**************************************************************************
* File: asciimap.h Part of tbaMUD *
* Usage: Generates an ASCII map of the player's surroundings. *
* *
* All rights reserved. See license for complete information. *
* *
* Copyright (C) 1993, 94 by the Trustees of the Johns Hopkins University *
* CircleMUD is based on DikuMUD, Copyright (C) 1990, 1991. *
**************************************************************************/
#ifndef ASCIIMAP_H_
#define ASCIIMAP_H_
/* Map options (settable in cedit) */
#define MAP_OFF 0
#define MAP_ON 1
#define MAP_IMM_ONLY 2
/* Exported function prototypes */
bool can_see_map(struct char_data *ch);
void str_and_map(char *str, struct char_data *ch, room_vnum target_room );
2008-04-13 23:02:15 +00:00
ACMD(do_map);
#endif /* ASCIIMAP_H_*/