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.
30 lines
497 B
30 lines
497 B
/** |
|
* @file themes.h |
|
* |
|
* Interface of the theme room placing algorithms. |
|
*/ |
|
#ifndef __THEMES_H__ |
|
#define __THEMES_H__ |
|
|
|
DEVILUTION_BEGIN_NAMESPACE |
|
|
|
#ifdef __cplusplus |
|
extern "C" { |
|
#endif |
|
|
|
extern int numthemes; |
|
extern BOOL armorFlag; |
|
extern BOOL weaponFlag; |
|
extern int zharlib; |
|
extern ThemeStruct themes[MAXTHEMES]; |
|
|
|
void InitThemes(); |
|
void HoldThemeRooms(); |
|
void CreateThemeRooms(); |
|
|
|
#ifdef __cplusplus |
|
} |
|
#endif |
|
DEVILUTION_END_NAMESPACE |
|
|
|
#endif /* __THEMES_H__ */
|
|
|