Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. #ifndef GYRA_H
  2. #define GYRA_H
  3.  
  4. typedef struct {
  5.         int id;
  6.         int hp;
  7.         double x, y;
  8.         double xrecord[144];
  9.         double yrecord[144];
  10.         int state, timer, counter;
  11.         int targx, targy;
  12.         int invincible;
  13.         double dir;
  14.         double imageIndex;
  15. } Gyra;
  16.  
  17. void createGyra(int x, int y);
  18.  
  19. #endif