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.
32 lines
493 B
32 lines
493 B
/** |
|
* @file themes.h |
|
* |
|
* Interface of the theme room placing algorithms. |
|
*/ |
|
#pragma once |
|
|
|
namespace devilution { |
|
|
|
#ifdef __cplusplus |
|
extern "C" { |
|
#endif |
|
|
|
typedef struct ThemeStruct { |
|
theme_id ttype; |
|
Sint32 ttval; |
|
} ThemeStruct; |
|
|
|
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 |
|
}
|
|
|