Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. #ifndef BOOMKNIGHT_H
  2. #define BOOMKNIGHT_H
  3.  
  4. typedef struct {
  5.         int id;
  6.         int hp;
  7.         int blink;
  8.         double x, y;
  9.         int dir;
  10.         double imageIndex;
  11.         int state, timer;
  12. } Boomknight;
  13.  
  14. void createBoomknight(int x, int y);
  15.  
  16. typedef struct {
  17.         int id;
  18.         int dir;
  19.         double x, y;
  20.         double hsp;
  21.         double imageIndex;
  22.         int timer;
  23. } Boom;
  24.  
  25. void createBoom(int x, int y, int dir);
  26.  
  27. #endif