forked from Nifyr/Fire-Emblem-Three-Houses-Randomizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
24 lines (22 loc) · 767 Bytes
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Decompiled with JetBrains decompiler
// Type: Fire_Emblem_Three_Houses_Randomizer_V2.Program
// Assembly: Fire Emblem Three Houses Randomizer V2, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: 800CD4D2-D1E7-4E09-8822-0C2C01D464BA
// Assembly location: C:\Users\ninte\Desktop\Games\Switch\Fire Emblem Three Houses Randomizer.exe
using System;
using System.Windows.Forms;
namespace Fire_Emblem_Three_Houses_Randomizer_V2
{
internal static class Program
{
[STAThread]
private static void Main()
{
Randomizer.rng = new RandomLog();
Randomizer.setKnown();
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run((Form) new RandomizerForm());
}
}
}