Skip to content

Instantly share code, notes, and snippets.

@ScottLilly
Created May 12, 2019 19:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ScottLilly/ab356b42d5f4ded8dd02243590825025 to your computer and use it in GitHub Desktop.
Save ScottLilly/ab356b42d5f4ded8dd02243590825025 to your computer and use it in GitHub Desktop.
Fix for ZZ
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace game
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new SuperAdventure.SuperAdventure());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment