initial project

This commit is contained in:
Jelle Luteijn 2024-01-03 19:00:30 +01:00
parent 024ea62d0e
commit 8e417a295f
13 changed files with 934 additions and 0 deletions

View file

@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace AnimeCon.Vlc.Scraper
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}