home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 79 / maccd 79.iso / multimedial / GL Tron / Source / gltron / callbacks.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-07-10  |  307 b   |  14 lines  |  [TEXT/CWIE]

  1. #ifndef CALLBACKS_H
  2. #define CALLBACKS_H
  3. typedef struct callbacks {
  4.   void (*display)(void);
  5.   void (*idle)(void);
  6.   void (*keyboard)(int, int, int);
  7.   void (*init)(void);
  8.   void (*exit)(void);
  9.   void (*initGL)(void);
  10.   void (*mouse)(int, int, int, int);
  11.   void (*mouseMotion)(int, int);
  12. } callbacks;
  13. #endif
  14.