Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. #ifndef SEAL_H
  2. #define SEAL_H
  3.  
  4. typedef struct {
  5.         int id, hp;
  6.         double x, y;
  7.         double imageIndex;
  8.         int dir, state, timer;
  9.         int invincible;
  10. } Seal;
  11.  
  12. void createSeal(int x, int y);
  13.  
  14. #endif