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
|
2012-06-05 06:45:25 +02:00
|
|
|
|
|
|
|
#include <kernel/objtypes.h>
|
|
|
|
|
2010-08-08 09:40:42 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-11-01 13:10:22 +01:00
|
|
|
struct locale;
|
|
|
|
struct message;
|
|
|
|
struct ship;
|
|
|
|
struct unit;
|
|
|
|
struct curse;
|
|
|
|
|
|
|
|
struct message *cinfo_ship(const void *obj, objtype_t typ,
|
|
|
|
const struct curse *c, int self);
|
|
|
|
void register_shipcurse(void);
|
|
|
|
struct curse *shipcurse_flyingship(struct ship *sh, struct unit *mage,
|
|
|
|
float power, int duration);
|
|
|
|
int levitate_ship(struct ship *sh, struct unit *mage, float power,
|
|
|
|
int duration);
|
2011-03-07 08:03:10 +01:00
|
|
|
|
2010-08-08 09:40:42 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2011-03-07 08:03:10 +01:00
|
|
|
#endif /* _SCURSE_H */
|