Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. #ifndef BEE_H
  2. #define BEE_H
  3.  
  4. typedef struct {
  5.         int id;
  6.         double x, y;
  7.         int xstart, ystart;
  8.         double hsp, vsp;
  9.         double imageIndex;
  10.         int dir, state, timer;
  11.         double hoverdir;
  12. } Bee;
  13.  
  14. void createBee(int x, int y, int dir);
  15.  
  16. #endif