You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
364 B
19 lines
364 B
/** |
|
* @file themes.h |
|
* |
|
* Interface of the theme room placing algorithms. |
|
*/ |
|
#ifndef __THEMES_H__ |
|
#define __THEMES_H__ |
|
|
|
extern int numthemes; |
|
extern BOOL armorFlag; |
|
extern BOOL weaponFlag; |
|
extern int zharlib; |
|
extern ThemeStruct themes[MAXTHEMES]; |
|
|
|
void InitThemes(); |
|
void HoldThemeRooms(); |
|
void CreateThemeRooms(); |
|
|
|
#endif /* __THEMES_H__ */
|
|
|