Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CEDMA-Exporter-715/tools/CedmaExporter/Program.cs @ 2228

Last change on this file since 2228 was 2228, checked in by gkronber, 15 years ago

Added first crude implementation of CEDMA exporter. #715

File size: 456 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Windows.Forms;
5
6namespace CedmaExporter {
7  static class Program {
8    /// <summary>
9    /// The main entry point for the application.
10    /// </summary>
11    [STAThread]
12    static void Main() {
13      Application.EnableVisualStyles();
14      Application.SetCompatibleTextRenderingDefault(false);
15      Application.Run(new CedmaExporterForm());
16    }
17  }
18}
Note: See TracBrowser for help on using the repository browser.