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

  1. /*
  2.  * $Source: f:/miner/source/main/editor/rcs/eobject.h $
  3.  * $Revision: 2.0 $
  4.  * $Author: john $
  5.  * $Date: 1995/02/27 11:35:30 $
  6.  * 
  7.  * Header for eobject.c
  8.  * 
  9.  * $Log: eobject.h $
  10.  * Revision 2.0  1995/02/27  11:35:30  john
  11.  * Version 2.0! No anonymous unions, Watcom 10.0, with no need
  12.  * for bitmaps.tbl.
  13.  * 
  14.  * Revision 1.5  1994/09/15  22:57:46  matt
  15.  * Made new objects be oriented to their segment
  16.  * Added keypad function to flip an object upside-down
  17.  * 
  18.  * Revision 1.4  1994/08/25  21:57:23  mike
  19.  * Prototype ObjectSelectPrevInMine, and probably wrote it too, though not in this file.
  20.  * 
  21.  * Revision 1.3  1994/08/05  18:17:48  matt
  22.  * Made object rotation have 4x resolution, and SHIFT+rotate do old resolution.
  23.  * 
  24.  * Revision 1.2  1994/05/14  18:00:59  matt
  25.  * Got rid of externs in source (non-header) files
  26.  * 
  27.  * Revision 1.1  1994/05/14  17:36:30  matt
  28.  * Initial revision
  29.  * 
  30.  * 
  31.  */
  32.  
  33.  
  34.  
  35. #ifndef _EOBJECT_H
  36. #define _EOBJECT_H
  37.  
  38. int ObjectSelectNextInMine(void);
  39. int ObjectSelectPrevInMine(void);
  40.  
  41. int    ObjectDecreaseBankBig(); 
  42. int    ObjectIncreaseBankBig(); 
  43. int    ObjectDecreasePitchBig();
  44. int    ObjectIncreasePitchBig();
  45. int    ObjectDecreaseHeadingBig();
  46. int    ObjectIncreaseHeadingBig();
  47. int     ObjectFlipObject();
  48.  
  49. #endif
  50.