home *** CD-ROM | disk | FTP | other *** search
/ Groovy Bytes: Behind the Moon / groovybytes.iso / GROOVY / DEMOS / MISC_DEM / SUNKNOWN.ZIP / OBJ.H < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-06  |  461 b   |  33 lines

  1. // OBJ.H
  2.  
  3. #ifndef _OBJ_H
  4. #define _OBJ_H
  5.  
  6. #include "rcglobal.h"
  7.  
  8. struct obj_S
  9. {
  10.     int size,skx,sky,dzpos,dxpos,dypos,cup,vfac,vand,spno,maxspno,minspno,rot,
  11.             zpos,cdown,origcup;
  12.     long xpos,ypos;
  13.     word angle,callb;
  14.     byte status,bounce;
  15.     obj_S::obj_S();
  16. };
  17.  
  18. class oliste_C
  19. {
  20. public:
  21.     obj_S *obj;
  22.     int antall;
  23.     oliste_C();
  24.     ~oliste_C();
  25.     void kopier(obj_S *f, obj_S *t);
  26.     void nyttobj(obj_S *ny);
  27.     void fjern(byte no);
  28. };
  29.  
  30. #endif
  31.  
  32.  
  33.