aboutsummaryrefslogtreecommitdiff
path: root/lib/lufa/Projects/LEDNotifier/CPUUsageApp/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lufa/Projects/LEDNotifier/CPUUsageApp/Program.cs')
-rw-r--r--lib/lufa/Projects/LEDNotifier/CPUUsageApp/Program.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/lufa/Projects/LEDNotifier/CPUUsageApp/Program.cs b/lib/lufa/Projects/LEDNotifier/CPUUsageApp/Program.cs
deleted file mode 100644
index cb4fd89f2..000000000
--- a/lib/lufa/Projects/LEDNotifier/CPUUsageApp/Program.cs
+++ /dev/null
@@ -1,21 +0,0 @@
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Windows.Forms;
5
6namespace CPUMonitor
7{
8 static class Program
9 {
10 /// <summary>
11 /// The main entry point for the application.
12 /// </summary>
13 [STAThread]
14 static void Main()
15 {
16 Application.EnableVisualStyles();
17 Application.SetCompatibleTextRenderingDefault(false);
18 Application.Run(new frmCPU());
19 }
20 }
21}