TEXPAGE.H 916 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. #ifndef _TEXPAGE_H
  26. #define _TEXPAGE_H
  27. #include "ui.h"
  28. extern int TextureLights;
  29. extern int TextureEffects;
  30. extern int TextureMetals;
  31. int texpage_grab_current(int n);
  32. int texpage_goto_first();
  33. void texpage_init( UI_WINDOW * win );
  34. void texpage_close();
  35. void texpage_do();
  36. #endif