Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. #ifndef SLUG_H
  2. #define SLUG_H
  3.  
  4. typedef struct {
  5.         int id;
  6.         int dir;
  7.         double x, y, vsp;
  8.         double imageIndex;
  9. } Slug;
  10.  
  11. void createSlug(int x, int y, int dir);
  12.  
  13. #endif