2015-01-30 20:37:14 +01:00
|
|
|
/*
|
|
|
|
* 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
|
2012-06-05 06:45:25 +02:00
|
|
|
|
2015-11-02 13:55:28 +01:00
|
|
|
#include <kernel/objtypes.h>
|
2012-06-05 06:45:25 +02:00
|
|
|
|
2010-08-08 09:40:42 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-11-01 13:10:22 +01:00
|
|
|
struct message;
|
|
|
|
struct curse;
|
2017-08-21 20:18:19 +02:00
|
|
|
struct curse_type;
|
2014-11-01 13:10:22 +01:00
|
|
|
|
2017-08-18 18:42:59 +02:00
|
|
|
extern const struct curse_type ct_shipspeedup;
|
2017-08-20 19:07:52 +02:00
|
|
|
extern const struct curse_type ct_stormwind;
|
2017-08-21 20:18:19 +02:00
|
|
|
extern const struct curse_type ct_nodrift;
|
2017-08-18 18:42:59 +02:00
|
|
|
|
2014-11-01 13:10:22 +01:00
|
|
|
struct message *cinfo_ship(const void *obj, objtype_t typ,
|
2015-01-30 20:37:14 +01:00
|
|
|
const struct curse *c, int self);
|
2014-11-01 13:10:22 +01:00
|
|
|
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 */
|