mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-05-10 14:11:04 -05:00
26 lines
600 B
C#
26 lines
600 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace DSPRE
|
|
{
|
|
public partial class ReopenProjectConfirmation : Form
|
|
{
|
|
public ReopenProjectConfirmation()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void dontAskAgainCheckbox_CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
SettingsManager.Settings.neverAskForOpening = dontAskAgainCheckbox.Checked;
|
|
}
|
|
}
|
|
}
|