This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Download VMware Workstation for Linux | |
| # Handles legacy versions (12.x - 17.6.3) from Cloudflare CDN cache and | |
| # newer versions (17.6.4+) from Archive.org. | |
| # | |
| # Use '-k' to keep the CDN download file compressed, exiting after download. (Ignored for v17.6.4+) | |
| # Use '-v <Version>' to specify desired version directly. | |
| BASE_URL="https://softwareupdate-prod.broadcom.com/cds/vmw-desktop/" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Heavily based on prime31's Nez ImGuiRenderer | |
| // https://github.com/prime31/Nez/blob/master/Nez.ImGui/Core/ImGuiRenderer.cs | |
| #if DEBUG | |
| using System.Runtime.InteropServices; | |
| using Encompass; | |
| using ImGuiNET; | |
| using MoonWorks.Graphics; | |
| using Anathema.Data; | |
| using System.Collections.Generic; |