From 49b3d926ea33f486468f0bc855585968eacca124 Mon Sep 17 00:00:00 2001 From: Jes Date: Wed, 6 Jan 2010 23:39:02 +0100 Subject: Ajout des sources de l'éditeur de script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- script-editor/Program.cs | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 script-editor/Program.cs (limited to 'script-editor/Program.cs') diff --git a/script-editor/Program.cs b/script-editor/Program.cs new file mode 100644 index 0000000..b219c24 --- /dev/null +++ b/script-editor/Program.cs @@ -0,0 +1,25 @@ +using System; +using System.Windows.Forms; + +namespace VPScriptEditor +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + try + { + Application.EnableVisualStyles(); + Application.Run(new VPScriptEditor()); + } + catch (Exception e) + { + MessageBox.Show(e.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); + } + } + } +} -- cgit v1.2.3