glmaze.h
上传用户:caisha3
上传日期:2013-09-21
资源大小:208739k
文件大小:0k
源码类别:

Windows编程

开发平台:

Visual C++

  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