OWtrack/OWTrack/Program.cs

24 lines
556 B
C#
Raw Normal View History

2018-07-13 03:24:05 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace OWTrack
{
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());
}
2018-08-03 02:45:06 +02:00
public static string Version = "1.2.1";
2018-07-13 03:24:05 +02:00
}
}