server/src/spells/flyingship.h
2017-08-21 20:48:00 +02:00

31 lines
513 B
C

#pragma once
#ifndef FLYINGSHIP_H
#define FLYINGSHIP_H
#include <stdbool.h>
#ifdef __cplusplus
extern "C" {
#endif
struct castorder;
struct ship;
struct unit;
struct curse_type;
extern const struct curse_type ct_flyingship;
int sp_flying_ship(struct castorder * co);
void register_flyingship(void);
bool flying_ship(const struct ship * sh);
int levitate_ship(struct ship *sh, struct unit *mage, double power,
int duration);
#ifdef __cplusplus
}
#endif
#endif