mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-05-11 22:44:48 -05:00
31 lines
787 B
C#
31 lines
787 B
C#
using MKDS_Course_Editor.Export3DTools;
|
|
using System.Windows.Forms;
|
|
|
|
namespace DSPRE.Editors
|
|
{
|
|
public partial class EncountersEditor : UserControl
|
|
{
|
|
public bool encounterEditorIsReady { get; set; } = false;
|
|
public EncountersEditor()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public void SetupEncountersEditor() {
|
|
encounterEditorIsReady = true;
|
|
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();
|
|
}
|
|
}
|
|
}
|