home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Games / Arashi 1.1.1 / source code / Game Source / jam src / PlayOptions.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-12  |  707 b   |  34 lines  |  [TEXT/KAHL]

  1. /*/
  2.      Project Arashi: PlayOptions.h
  3.      Major release: Version 1.1d2, 9/5/95
  4.  
  5.      Last modification: Friday, March 12, 1993, 22:12
  6.      Created: Sunday, March 17, 1991, 0:24
  7.  
  8.      Copyright © 1991-1993, Juri Munkki
  9. /*/
  10.  
  11. #define    OPTIONSFILENAMESTRING    128
  12. #define    OPTIONSDIALOG            128
  13.  
  14. typedef    struct
  15. {
  16.     int        absMoveFlag;
  17.     int        mouseSensitivity;
  18.     int        rotationType;
  19.     int        blankUnused;
  20.     int        monochrome;
  21.     int        soundOff;
  22.     int        noLoudSounds;
  23.     int        verticalGame;
  24.     int        sys607Sound;
  25.     int        restart;                    /* (mz) how to restart */
  26.     int        showfscores;                /* (mz) */
  27.     int        noBackgroundTasks;
  28. }    PlayOptionsRecord;
  29.  
  30. #ifdef    MAINOPTIONS
  31. PlayOptionsRecord    *PlayOptions;
  32. #else
  33. extern    PlayOptionsRecord    *PlayOptions;
  34. #endif