Skip to content

Commit ca699bd

Browse files
authored
Add files via upload
1 parent 0440fc4 commit ca699bd

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

Program.cs

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using System.Windows.Forms;
6+
7+
namespace FreeSploit
8+
{
9+
internal static class Program
10+
{
11+
/// <summary>
12+
/// Hlavní vstupní bod aplikace.
13+
/// </summary>
14+
[STAThread]
15+
static void Main()
16+
{
17+
Application.EnableVisualStyles();
18+
Application.SetCompatibleTextRenderingDefault(false);
19+
Application.Run(new Form1());
20+
}
21+
}
22+
}

0 commit comments

Comments
 (0)