Blame mono/Diagram/Program.cs

8cb222
/*
8cb222
    ......... 2015 Ivan Mahonin
8cb222
8cb222
    This program is free software: you can redistribute it and/or modify
8cb222
    it under the terms of the GNU General Public License as published by
8cb222
    the Free Software Foundation, either version 3 of the License, or
8cb222
    (at your option) any later version.
8cb222
8cb222
    This program is distributed in the hope that it will be useful,
8cb222
    but WITHOUT ANY WARRANTY; without even the implied warranty of
8cb222
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
8cb222
    GNU General Public License for more details.
8cb222
8cb222
    You should have received a copy of the GNU General Public License
8cb222
    along with this program.  If not, see <http: licenses="" www.gnu.org="">.</http:>
8cb222
*/
8cb222
8cb222
using System;
8cb222
using System.Windows.Forms;
8cb222
8cb222
namespace Diagram {
8cb222
    public class Program {
8cb222
        [STAThread]
8cb222
        static void Main() {
8cb222
            Application.EnableVisualStyles();
8cb222
            Application.SetCompatibleTextRenderingDefault(false);
8cb222
            Application.Run(new MainForm());
8cb222
        }
8cb222
    }
8cb222
}
8cb222