Rename the dungeons.
[rogue-pphs.git] / rogue.h
diff --git a/rogue.h b/rogue.h
index 5edf336..47dfd8e 100644 (file)
--- a/rogue.h
+++ b/rogue.h
@@ -3,7 +3,7 @@
  *\r
  * @(#)rogue.h 3.38 (Berkeley) 6/15/81\r
  *\r
- * Rogue: Exploring the Dungeons of Doom\r
+ * Rogue: Exploring the Cavern of Cuties\r
  * Copyright (C) 1980, 1981 Michael Toy, Ken Arnold and Glenn Wichman\r
  * All rights reserved.\r
  *\r
@@ -73,6 +73,7 @@
 #define ISMULT(type) (type == POTION || type == SCROLL || type == FOOD)\r
 #define rndchoice(a) (a[rnd(sizeof(a)/sizeof((a)[0]))])\r
 #define hash(i) ((unsigned)(i)*2654435761u)\r
+\r
 /*\r
  * Things that appear on the screens\r
  */\r
@@ -442,7 +443,7 @@ extern int lastscore;                               /* Score before this turn */
 extern int no_food;                            /* Number of levels without food */\r
 extern int seed;                               /* Random number seed */\r
 extern int count;                              /* Number of times to repeat command */\r
-extern int dnum;                               /* Dungeon number */\r
+extern int dnum;                               /* Cavern number */\r
 extern int fung_hit;                           /* Number of time fungi has hit */\r
 extern int quiet;                              /* Number of quiet turns */\r
 extern int max_level;                          /* Deepest player has gone */\r
@@ -513,6 +514,11 @@ char *tr_name(), *new();
 char *charge_str(),*vowelstr(), *inv_name();\r
 char *ctime(), *num(), *ring_num();\r
 \r
+int readchar(WINDOW *win);\r
+int md_readchar(WINDOW *win);\r
+int wait_for(WINDOW *win, register char ch);\r
+char *killname(register char monst);\r
+\r
 struct room *roomin();\r
 \r
 coord *rndmove();\r