home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / gamtlk11.zip / source.zip / BLACKJACK / BLACKJACK.RC < prev    next >
Text File  |  1999-03-29  |  2KB  |  65 lines

  1. /************************************************************************
  2.  *
  3.  * File: BlackJack.RC
  4.  *
  5.  * Main resource script for BlackJack
  6.  *
  7.  ************************************************************************/
  8. #include    <os2.h>
  9. #include    "BlackJack.H"
  10. #include    "BlackJackRC.H"
  11.  
  12. ICON    MainFrame     "BlackJack.ICO"
  13.  
  14. BITMAP  Chip5Bitmap "5Dollar.BMP"
  15.  
  16. MENU MainFrame
  17. BEGIN
  18.     SUBMENU     "~Game", MainGame
  19.     BEGIN
  20.         MENUITEM    "New", MainGameNew
  21.         MENUITEM    "Add $100", MainGameAdd100
  22.         MENUITEM    "Cash Out", MainGameCashOut
  23.         MENUITEM    SEPARATOR
  24.         MENUITEM    "E~xit", MainGameExit
  25.     END
  26.     SUBMENU     "~Options", MainOptions
  27.     BEGIN
  28.         SUBMENU     "Sound", MainOptionsSound
  29.         BEGIN
  30.             MENUITEM    "On", MainSoundOn, MIA_CHECKED
  31.             MENUITEM    "Off", MainSoundOff
  32.         END
  33.         MENUITEM    "Stats...", MainOptionsStats
  34.         MENUITEM    "Rules...", MainOptionsRules
  35.     END
  36. END
  37.  
  38. ACCELTABLE  MainFrame
  39. BEGIN
  40.     "x",    MainGameExit, ALT
  41. END
  42.  
  43. STRINGTABLE MainFrame
  44. BEGIN
  45.     PMT_BASE+PMT_APPNAME    "Blackjack"
  46.     PMT_BASE+PMT_VERSION        "v1.00"
  47.     PMT_BASE+PMT_NODECK     "Cannot load deck library!"
  48.     PMT_BASE+PMT_NODECK_TITLE   "Error!"
  49.     PMT_BASE+PMT_BLACKJACK  "Blackjack!"
  50.     PMT_BASE+PMT_BUST       "Bust!"
  51.     PMT_BASE+PMT_HIT        "~Hit"
  52.     PMT_BASE+PMT_STAND      "~Stand"
  53.     PMT_BASE+PMT_DOUBLE     "~Double"
  54.     PMT_BASE+PMT_SPLIT          "S~plit"
  55.     PMT_BASE+PMT_DEAL               "Deal"
  56.     PMT_BASE+PMT_ADVICE         "Advice"
  57.     PMT_BASE+PMT_BANK           "Bank"
  58.     PMT_BASE+PMT_PUSH           "Push"
  59.     PMT_BASE+PMT_LOSE           "Lose"
  60.     PMT_BASE+PMT_WIN                "Win"
  61.     PMT_BASE+PMT_INSURANCE      "Do you want insurance?"
  62. END
  63.  
  64. rcinclude   "BlackJack.dlg"
  65.