WARP.H 851 B

1234567891011121314151617181920212223242526272829303132333435
  1. #ifndef __WARP_H
  2. #define __WARP_H
  3. #include "typedefs.h"
  4. #include "engine.h"
  5. /***********************************************************************
  6. * Global Structures
  7. **********************************************************************/
  8. struct ZONE {
  9. long x;
  10. long y;
  11. long z;
  12. short sector;
  13. short angle;
  14. };
  15. /***********************************************************************
  16. * Global Data
  17. **********************************************************************/
  18. extern ZONE gStartZone[kMaxPlayers];
  19. extern short gUpperLink[kMaxSectors], gLowerLink[kMaxSectors];
  20. /***********************************************************************
  21. * Function Prototypes
  22. **********************************************************************/
  23. extern void InitPlayerStartZones( void );
  24. #endif // __WARP_H