home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 7 Games / 07-Games.zip / MAZE.ZIP / MAZE.RC < prev    next >
Text File  |  1988-12-30  |  962b  |  30 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",IDM_SOLVE
  10.         MENUITEM "~New",IDM_NEW
  11.         MENUITEM "~Clear",IDM_CLEAR
  12.         MENUITEM "~Help",IDM_HELP
  13.       }
  14.   }
  15.  
  16. DLGTEMPLATE IDD_HELPBOX
  17.   {
  18.     DIALOG "",-1,5,5,210,164,WS_SAVEBITS|FS_DLGBORDER
  19.       {
  20.         LTEXT "     Resize or select New for a new maze." -1,2,140,205,10
  21.         LTEXT "     Use the cursor keys to attempt to"    -1,2,116,190,10
  22.         LTEXT "solve an unsolved maze."                   -1,2,104,115,10
  23.         LTEXT "     Select Clear to remove attempts at"   -1,2, 80,195,10
  24.         LTEXT "solution."                                 -1,2, 68, 45,10
  25.         LTEXT "     Select Solve to have the computer"    -1,2, 44,190,10
  26.         LTEXT "solve the maze."                           -1,2, 32, 75,10
  27.         DEFPUSHBUTTON "OK" DID_OK,89,4,32,14,WS_GROUP
  28.       }
  29.   }
  30.