Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

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