/* File: borg5.h */ /* Purpose: Header file for "borg5.c" -BEN- */ #ifndef INCLUDED_BORG5_H #define INCLUDED_BORG5_H #include "angband.h" #ifdef ALLOW_BORG /* * This file provides support for "borg5.c". */ #include "borg1.h" #include "borg2.h" #include "borg3.h" /* * Update state based on current "map" */ extern void borg_update(void); /* * React to various "important" messages */ extern void borg_react(cptr msg, cptr buf); /* * Initialize this file */ extern void borg_init_5(void); #endif #endif