Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
437 B

  1. #ifndef __GLMAZE_H__
  2. #define __GLMAZE_H__
  3. #include "sscommon.h"
  4. #include "maze_std.h"
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8. enum {
  9. TEX_WALL = 0,
  10. TEX_FLOOR,
  11. TEX_CEILING,
  12. TEX_START,
  13. TEX_END,
  14. TEX_RAT,
  15. TEX_AD,
  16. TEX_COVER,
  17. NUM_TEXTURES
  18. };
  19. void UseTextureEnv( TEX_ENV *pTexEnv );
  20. #define MAX_RATS 10
  21. extern MazeOptions maze_options;
  22. extern TEX_RES gTexResSurf[];
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26. #endif