summaryrefslogblamecommitdiffstats
path: root/PC/AccountValue/Program.cs
blob: db1cb1adbf28ff662fc82e81f57aef01537dbdae (plain) (tree)


















                                                     
 
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());
        }
    }
}