server/src/spells/buildingcurse.h

32 lines
822 B
C
Raw Normal View History

/*
2010-08-08 09:40:42 +02:00
*
* Eressea PB(E)M host Copyright (C) 1998-2003
* Christian Schlittchen (corwin@amber.kn-bremen.de)
* Katja Zedel (katze@felidae.kn-bremen.de)
* Henning Peters (faroul@beyond.kn-bremen.de)
* Enno Rehling (enno@eressea.de)
* Ingo Wilken (Ingo.Wilken@informatik.uni-oldenburg.de)
*
* This program may not be used, modified or distributed without
* prior permission by the authors of Eressea.
*/
#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
struct locale;
struct curse;
2015-07-07 20:23:24 +02:00
struct message;
2010-08-08 09:40:42 +02: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 */