2021-12-11 21:32:48 +01:00
|
|
|
#ifndef SPACESHIP_H_INCLUDED
|
|
|
|
#define SPACESHIP_H_INCLUDED
|
|
|
|
|
2022-05-30 18:05:53 +02:00
|
|
|
extern ball spaceship;
|
2021-12-11 21:32:48 +01:00
|
|
|
|
|
|
|
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
|