1
0
mirror of https://github.com/SirusDoma/VoxCharger.git synced 2024-11-24 07:00:14 +01:00
VoxCharger/Program.cs
2020-04-19 03:24:48 +07:00

23 lines
514 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace VoxCharger
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}