server/src/spells/shipcurse.h

26 lines
534 B
C
Raw Normal View History

2010-08-08 09:40:42 +02:00
#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 */