Import exisitng code

This commit is contained in:
Jan Groß
2021-05-14 22:54:30 +02:00
parent 1d5e0f69d3
commit 732abefd12
8 changed files with 26485 additions and 0 deletions

23
Wallpaperchan/Program.cs Normal file
View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Wallpaperchan
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.SetHighDpiMode(HighDpiMode.SystemAware);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}