server/src/spells/shipcurse.h

34 lines
983 B
C
Raw Normal View History

2010-08-08 09:40:42 +02:00
/* vi: set ts=2:
*
* 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 _SCURSE_H
#define _SCURSE_H
#ifdef __cplusplus
extern "C" {
#endif
2011-03-07 08:03:10 +01:00
struct locale;
struct message;
extern struct message *cinfo_ship(const void *obj, objtype_t typ,
2011-03-07 08:03:10 +01:00
const struct curse *c, int self);
extern void register_shipcurse(void);
extern struct curse *shipcurse_flyingship(struct ship *sh, struct unit *mage,
double power, int duration);
int levitate_ship(struct ship *sh, struct unit *mage, double power,
int duration);
2010-08-08 09:40:42 +02:00
#ifdef __cplusplus
}
#endif
2011-03-07 08:03:10 +01:00
#endif /* _SCURSE_H */