mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-05-10 06:01:05 -05:00
23 lines
497 B
C#
23 lines
497 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace DSPRE
|
|
{
|
|
public partial class GiveItemDialog : Form
|
|
{
|
|
public bool okSelected = new bool();
|
|
public string command;
|
|
|
|
public GiveItemDialog(string[] itemNames)
|
|
{
|
|
InitializeComponent();
|
|
itemComboBox.DataSource = itemNames;
|
|
}
|
|
|
|
private void okButton_Click(object sender, EventArgs e)
|
|
{
|
|
okSelected = true;
|
|
this.Close();
|
|
}
|
|
}
|
|
} |