12 lines
271 B
C
12 lines
271 B
C
|
#ifndef SPACESHIP_H_INCLUDED
|
||
|
#define SPACESHIP_H_INCLUDED
|
||
|
|
||
|
extern struct ball spaceship;
|
||
|
|
||
|
extern void spaceship_init_state ();
|
||
|
extern void spaceship_update_state ();
|
||
|
extern void spaceship_control (double dx, double dy);
|
||
|
extern void spaceship_draw (cairo_t * cr);
|
||
|
|
||
|
#endif
|