flying-balls/spaceship.h

12 lines
271 B
C
Raw Normal View History

#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