home · contact · privacy
Added hitpoints and death for player.
[plomrogue] / src / roguelike.h
index a72b7cada8a82ff0c0a3b6387740a2cd531504d4..14ca783d5ae43858d2990e9390bb24e0768b0c2a 100644 (file)
@@ -26,11 +26,6 @@ struct Map {
   struct yx_uint16 offset;
   char * cells; };
 
-struct Item {
-  struct Item * next;
-  char name;
-  struct yx_uint16 pos; };
-
 extern uint16_t rrand(char, uint32_t);
 extern void update_log (struct World *, char *);