2010-08-08 09:40:42 +02:00
|
|
|
#ifndef _BCURSE_H
|
|
|
|
#define _BCURSE_H
|
2015-07-07 20:23:24 +02:00
|
|
|
#include <kernel/objtypes.h>
|
2010-08-08 09:40:42 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-01-30 20:37:14 +01:00
|
|
|
struct locale;
|
|
|
|
struct curse;
|
2015-07-07 20:23:24 +02:00
|
|
|
struct message;
|
2017-08-18 18:42:59 +02:00
|
|
|
struct curse_type;
|
|
|
|
|
|
|
|
extern const struct curse_type ct_magicwalls;
|
2017-08-21 19:43:35 +02:00
|
|
|
extern const struct curse_type ct_strongwall;
|
|
|
|
extern const struct curse_type ct_magicrunes;
|
|
|
|
extern const struct curse_type ct_nocostbuilding;
|
2010-08-08 09:40:42 +02:00
|
|
|
|
2015-01-30 20:37:14 +01:00
|
|
|
extern void register_buildingcurse(void);
|
2015-07-07 20:23:24 +02:00
|
|
|
struct message *cinfo_building(const void *obj, objtype_t typ, const struct curse * c, int self);
|
2010-08-08 09:40:42 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2011-03-07 08:03:10 +01:00
|
|
|
#endif /* _BCURSE_H */
|