server/src/curses.h

28 lines
557 B
C
Raw Normal View History

2010-08-08 09:40:42 +02:00
#ifndef H_KRNL_CURSES
#define H_KRNL_CURSES
#ifdef __cplusplus
extern "C" {
#endif
extern void register_curses(void);
/* f<>r Feuerw<72>nde: in movement mu<6D> das noch explizit getestet werden.
** besser w<EFBFBD>re eine blcok_type::move() routine, die den effekt
** der Bewegung auf eine struct unit anwendet.
**/
extern struct border_type bt_chaosgate;
extern struct border_type bt_firewall;
typedef struct wall_data {
struct unit * mage;
int force;
boolean active;
int countdown;
} wall_data;
#ifdef __cplusplus
}
#endif
#endif