home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 7 Games / 07-Games.zip / PMMAZE1A.ZIP / MAZE.RC < prev    next >
Text File  |  1989-01-20  |  1KB  |  38 lines

  1. #define INCL_PM
  2. #include <os2.h>
  3. #include "maze.h"
  4.  
  5. MENU ID_MAINMENU
  6.   {
  7.     SUBMENU "~Options",-1
  8.       {
  9.         MENUITEM "~Solve\tAltS",IDM_SOLVE
  10.         MENUITEM "~New\tAltN",IDM_NEW
  11.         MENUITEM "~Clear\tAltC",IDM_CLEAR
  12.         MENUITEM "~Help\tAltH",IDM_HELP
  13.       }
  14.   }
  15.  
  16. ACCELTABLE ID_MAINMENU
  17.   {
  18.     "s",IDM_SOLVE,CHAR,ALT
  19.     "n",IDM_NEW,CHAR,ALT
  20.     "c",IDM_CLEAR,CHAR,ALT
  21.     "h",IDM_HELP,CHAR,ALT
  22.   }
  23.  
  24. DLGTEMPLATE IDD_HELPBOX
  25.   {
  26.     DIALOG "",-1,5,5,210,164,WS_SAVEBITS|FS_DLGBORDER
  27.       {
  28.         LTEXT "     Resize or select New for a new maze." -1,2,140,205,10
  29.         LTEXT "     Use the cursor keys to attempt to"    -1,2,116,190,10
  30.         LTEXT "solve an unsolved maze."                   -1,2,104,115,10
  31.         LTEXT "     Select Clear to remove attempts at"   -1,2, 80,195,10
  32.         LTEXT "solution."                                 -1,2, 68, 45,10
  33.         LTEXT "     Select Solve to have the computer"    -1,2, 44,190,10
  34.         LTEXT "solve the maze."                           -1,2, 32, 75,10
  35.         DEFPUSHBUTTON "OK" DID_OK,89,4,32,14,WS_GROUP
  36.       }
  37.   }
  38.