minesweeper

A minewseeper implementation to play around with Hare and Raylib
git clone https://git.tronto.net/minesweeper
Download | Log | Files | Refs | README | LICENSE

raylib.rc (756B)


      1 GLFW_ICON ICON "raylib.ico"
      2 
      3 1 VERSIONINFO
      4 FILEVERSION     5,5,0,0
      5 PRODUCTVERSION  5,5,0,0
      6 BEGIN
      7   BLOCK "StringFileInfo"
      8   BEGIN
      9     //BLOCK "080904E4"  // English UK
     10     BLOCK "040904E4"    // English US
     11     BEGIN
     12       VALUE "CompanyName", "raylib technologies"
     13       VALUE "FileDescription", "raylib application (www.raylib.com)"
     14       VALUE "FileVersion", "5.5.0"
     15       VALUE "InternalName", "raylib"
     16       VALUE "LegalCopyright", "(c) 2024 Ramon Santamaria (@raysan5)"
     17       VALUE "OriginalFilename", "raylib"
     18       VALUE "ProductName", "raylib app"
     19       VALUE "ProductVersion", "5.5.0"
     20     END
     21   END
     22   BLOCK "VarFileInfo"
     23   BEGIN
     24     //VALUE "Translation", 0x809, 1252  // English UK
     25     VALUE "Translation", 0x409, 1252    // English US
     26   END
     27 END