1 /*
2  * See Licensing and Copyright notice in naev.h
3  */
4 
5 
6 #ifndef BOARD_H
7 #  define BOARD_H
8 
9 
10 #include "pilot.h"
11 
12 
13 int player_isBoarded (void);
14 void player_board (void);
15 void board_unboard (void);
16 int pilot_board( Pilot *p );
17 void pilot_boardComplete( Pilot *p );
18 void board_exit( unsigned int wdw, char* str );
19 
20 
21 #endif
22