home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1998 #6 / amigaacscoverdisc1998-061998.iso / games / descent / source / main / texpage.h < prev    next >
C/C++ Source or Header  |  1998-06-08  |  916b  |  44 lines

  1. /*
  2.  * $Source: f:/miner/source/main/editor/rcs/texpage.h $
  3.  * $Revision: 2.0 $
  4.  * $Author: john $
  5.  * $Date: 1995/02/27 11:34:31 $
  6.  * 
  7.  * Definitions for texpage.c
  8.  * 
  9.  * $Log: texpage.h $
  10.  * Revision 2.0  1995/02/27  11:34:31  john
  11.  * Version 2.0! No anonymous unions, Watcom 10.0, with no need
  12.  * for bitmaps.tbl.
  13.  * 
  14.  * Revision 1.3  1994/05/14  17:17:53  matt
  15.  * Got rid of externs in source (non-header) files
  16.  * 
  17.  * Revision 1.2  1993/12/16  15:57:54  john
  18.  * moved texture selection stuff to texpage.c
  19.  * 
  20.  * Revision 1.1  1993/12/16  15:22:34  john
  21.  * Initial revision
  22.  * 
  23.  * 
  24.  */
  25.  
  26.  
  27.  
  28. #ifndef _TEXPAGE_H
  29. #define _TEXPAGE_H
  30.  
  31. #include "ui.h"
  32.  
  33. extern int TextureLights;
  34. extern int TextureEffects;
  35. extern int TextureMetals;
  36.  
  37. int texpage_grab_current(int n);
  38. int texpage_goto_first();
  39. void texpage_init( UI_WINDOW * win );
  40. void texpage_close();
  41. void texpage_do();
  42.  
  43. #endif
  44.