This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
CC-Clicker/CC-Clicker 2.0/Program.cs

18 lines
445 B
C#
Raw Normal View History

2019-11-10 00:28:55 +01:00
using System;
using System.Windows.Forms;
2020-03-11 18:53:32 +01:00
using CC_Functions.W32.Hooks;
2019-11-10 00:28:55 +01:00
namespace CC_Clicker_2._0
{
2020-03-11 18:53:32 +01:00
internal static class Program
2019-11-10 00:28:55 +01:00
{
[STAThread]
2020-03-11 18:53:32 +01:00
private static void Main()
2019-11-10 00:28:55 +01:00
{
2020-03-11 18:53:32 +01:00
using KeyboardHook hook = new KeyboardHook();
2019-11-10 00:28:55 +01:00
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
2020-03-11 18:53:32 +01:00
Application.Run(new MainForm(hook));
2019-11-10 00:28:55 +01:00
}
}
2020-03-11 18:53:32 +01:00
}