home *** CD-ROM | disk | FTP | other *** search
/ ST-Computer Leser-CD 2000 January / LCD_01_2000.iso / games / doom / pmdoom / include / f_finale.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-12-17  |  1.4 KB  |  52 lines

  1. /*  Emacs style mode select   -*- C++ -*-  */
  2. /* ----------------------------------------------------------------------------- */
  3. /*  */
  4. /*  $Id:$ */
  5. /*  */
  6. /*  Copyright (C) 1993-1996 by id Software, Inc. */
  7. /*  */
  8. /*  This source is available for distribution and/or modification */
  9. /*  only under the terms of the DOOM Source Code License as */
  10. /*  published by id Software. All rights reserved. */
  11. /*  */
  12. /*  The source is distributed in the hope that it will be useful, */
  13. /*  but WITHOUT ANY WARRANTY; without even the implied warranty of */
  14. /*  FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License */
  15. /*  for more details. */
  16. /*  */
  17. /*  DESCRIPTION: */
  18. /*  */
  19. /*      */
  20. /* ----------------------------------------------------------------------------- */
  21.  
  22.  
  23. #ifndef __F_FINALE__
  24. #define __F_FINALE__
  25.  
  26.  
  27. #include "doomtype.h"
  28. #include "d_event.h"
  29. #include "r_defs.h"
  30. /*  */
  31. /*  FINALE */
  32. /*  */
  33.  
  34. /*  Called by main loop. */
  35. boolean F_Responder (event_t* ev);
  36.  
  37. /*  Called by main loop. */
  38. void F_Ticker (void);
  39.  
  40. /*  Called by main loop. */
  41. void F_Drawer (void);
  42.  
  43.  
  44. void F_StartFinale (void);
  45.  
  46. void F_DrawPatchCol8( int x, patch_t *patch,int col );
  47. void F_DrawPatchCol16( int x, patch_t *patch,int col );
  48. void F_DrawPatchCol24( int x, patch_t *patch,int col );
  49. void F_DrawPatchCol32( int x, patch_t *patch,int col );
  50.  
  51. #endif
  52.