home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1998 #6 / amigaacscoverdisc1998-061998.iso / games / descent / source / main / editor / eswitch.h < prev    next >
Text File  |  1998-06-08  |  2KB  |  68 lines

  1. /*
  2. THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
  3. SOFTWARE CORPORATION ("PARALLAX").  PARALLAX, IN DISTRIBUTING THE CODE TO
  4. END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
  5. ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
  6. IN USING, DISPLAYING,  AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
  7. SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
  8. FREE PURPOSES.  IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
  9. CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES.  THE END-USER UNDERSTANDS
  10. AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.  
  11. COPYRIGHT 1993-1998 PARALLAX SOFTWARE CORPORATION.  ALL RIGHTS RESERVED.
  12. */
  13. /*
  14.  * $Source: f:/miner/source/main/editor/rcs/eswitch.h $
  15.  * $Revision: 2.0 $
  16.  * $Author: john $
  17.  * $Date: 1995/02/27 11:35:40 $
  18.  * 
  19.  * Headers for switch adding functions
  20.  * 
  21.  * $Log: eswitch.h $
  22.  * Revision 2.0  1995/02/27  11:35:40  john
  23.  * Version 2.0! No anonymous unions, Watcom 10.0, with no need
  24.  * for bitmaps.tbl.
  25.  * 
  26.  * Revision 1.6  1994/05/30  20:22:35  yuan
  27.  * New triggers.
  28.  * 
  29.  * Revision 1.5  1994/05/27  10:34:35  yuan
  30.  * Added new Dialog boxes for Walls and Triggers.
  31.  * 
  32.  * Revision 1.4  1994/05/25  18:08:39  yuan
  33.  * Revamping walls and triggers interface.
  34.  * Wall interface complete, but triggers are still in progress.
  35.  * 
  36.  * Revision 1.3  1994/04/28  23:46:56  yuan
  37.  * Added prototype for remove_trigger.
  38.  * 
  39.  * Revision 1.2  1994/03/15  16:34:20  yuan
  40.  * Fixed bm loader (might have some changes in walls and switches)
  41.  * 
  42.  * Revision 1.1  1994/03/10  14:49:03  yuan
  43.  * Initial revision
  44.  * 
  45.  * 
  46.  */
  47.  
  48. #ifndef _ESWITCH_H
  49. #define _ESWITCH_H
  50.  
  51. #include "inferno.h"
  52. #include "segment.h"
  53. #include "switch.h"
  54.  
  55. extern int bind_wall_to_trigger();
  56.  
  57. extern int trigger_remove();
  58.  
  59. extern int remove_trigger(segment *seg, short side);
  60.  
  61. extern void close_trigger_window();
  62.  
  63. extern void do_trigger_window();
  64.  
  65. #endif
  66.  
  67. 
  68.