Blame mono/Contours/Program.cs

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