Dodaj pliki projektów.

This commit is contained in:
Szymon Porwolik
2019-02-20 23:36:27 +01:00
parent ff347bfece
commit 85ab99fb56
11 changed files with 454 additions and 0 deletions

22
Perun_v1/Program.cs Normal file
View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Perun_v1
{
static class Program
{
/// <summary>
/// Główny punkt wejścia dla aplikacji.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}