https://github.com/salvadorp2001/Inventory_Taker
Raw File
Tip revision: ee895d77d8875ecea0d50e934670e39ae56ae6ae authored by salvadorp2001 on 25 April 2015, 19:03:31 UTC
Added item slots
Tip revision: ee895d7
Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Inventory_app
{
    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());
        }
    }
}
back to top