Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
loudKode authored Aug 26, 2019
1 parent d663eeb commit 8cf2a31
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;

namespace CasualGamesStore
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new TestForm());
}
}
}

0 comments on commit 8cf2a31

Please sign in to comment.