mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-05-09 21:50:57 -05:00
- 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
23 lines
518 B
C#
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());
|
|
}
|
|
}
|
|
}
|