-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
42 lines (35 loc) · 1.01 KB
/
Program.cs
File metadata and controls
42 lines (35 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using RPGMasterTools.Source.Util;
using RPGMasterTools.Source.View;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace RPGMasterTools
{
static class Program
{
[STAThread]
static void Main()
{
#if (!DEBUG)
try
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run( new ViewMain() );
}
catch( Exception e )
{
// THROW EXCEPTION TO GLOBAL EXCEPTION HANDLER
UExceptionHandler.handleWithException(e);
}
#endif
#if (DEBUG)
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new ViewMain());
#endif
}
}
}