server/src/spells/shipcurse.h

38 lines
964 B
C
Raw Normal View History

/*
* Eressea PB(E)M host Copyright (C) 1998-2015
2010-08-08 09:40:42 +02:00
* 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
#include <kernel/objtypes.h>
2010-08-08 09:40:42 +02:00
#ifdef __cplusplus
extern "C" {
#endif
struct message;
struct curse;
struct curse_type;
extern const struct curse_type ct_shipspeedup;
extern const struct curse_type ct_stormwind;
extern const struct curse_type ct_nodrift;
struct message *cinfo_ship(const void *obj, objtype_t typ,
const struct curse *c, int self);
void register_shipcurse(void);
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 */