mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-05-10 22:21:05 -05:00
28 lines
632 B
C#
28 lines
632 B
C#
using System.Windows.Forms;
|
|
|
|
namespace DSPRE.Editors
|
|
{
|
|
public partial class EncountersEditor : UserControl
|
|
{
|
|
public EncountersEditor()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public void SetupEncountersEditor() {
|
|
tabPageHeadbuttEditor_Enter(null, null);
|
|
}
|
|
|
|
private void tabPageHeadbuttEditor_Enter(object sender, System.EventArgs e)
|
|
{
|
|
headbuttEncounterEditor.SetupHeadbuttEncounterEditor();
|
|
headbuttEncounterEditor.makeCurrent();
|
|
}
|
|
|
|
private void tabPageSafariZoneEditor_Enter(object sender, System.EventArgs e)
|
|
{
|
|
safariZoneEditor.SetupSafariZoneEditor();
|
|
}
|
|
}
|
|
}
|