-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProgram.cs
More file actions
31 lines (27 loc) · 840 Bytes
/
Program.cs
File metadata and controls
31 lines (27 loc) · 840 Bytes
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
// Decompiled with JetBrains decompiler
// Type: pspo2seSaveEditorProgram.Program
// Assembly: PSPo2 Save Editor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: 3E91610F-7D39-4E7C-8F4B-E7C65114B315
// Assembly location: C:\Development\PSPo2 Save Editor v3.0 build 1004 pack\PSPo2 Save Editor.exe
using System;
using System.Windows.Forms;
namespace pspo2seSaveEditorProgram
{
internal static class Program
{
public static pspo2seForm thisForm;
public static pspo2seForm form
{
get => Program.thisForm;
set => Program.thisForm = value;
}
[STAThread]
private static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Program.form = new pspo2seForm();
Application.Run((Form) Program.form);
}
}
}