summaryrefslogtreecommitdiffstats
path: root/PC/AccountValue/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'PC/AccountValue/Program.cs')
-rw-r--r--PC/AccountValue/Program.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/PC/AccountValue/Program.cs b/PC/AccountValue/Program.cs
new file mode 100644
index 0000000..db1cb1a
--- /dev/null
+++ b/PC/AccountValue/Program.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.Windows.Forms;
+using System.Threading;
+
+namespace AccountValue
+{
+ static class Program
+ {
+ /// <summary>
+ /// The main entry point for the application.
+ /// </summary>
+ [STAThread]
+ static void Main()
+ {
+ Application.EnableVisualStyles();
+ Application.Run(new Form1());
+ }
+ }
+} \ No newline at end of file