DS-Pokemon-Rom-Editor/DS_Map/Program.cs
AdAstra-LD fa2a015170 Added support for Expanded ARM9 memory, new search location feature
- Fixed Text message search being case sensitive no matter what
- Added new ROM Toolbox icon
- Added ARM9 memory expander to the Toolbox
- Added placeholder BDHCAM button to toolbox
- Added placeholder "Pokemon names case converter" button to toolbox
- New search location feature
- Fixed Encounters editor not opening
2021-01-10 03:58:27 +01:00

23 lines
518 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace DSPRE
{
static class Program
{
/// <summary>
/// Punto di ingresso principale dell'applicazione.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainProgram());
}
}
}