Skip to content

Commit

Permalink
Some more fixes to the new tabs and an arm9 issue (force it uncompres…
Browse files Browse the repository at this point in the history
…sed)
  • Loading branch information
Mixone-FinallyHere committed Mar 5, 2024
1 parent 9b28d63 commit 0ab3d12
Show file tree
Hide file tree
Showing 5 changed files with 527 additions and 528 deletions.
12 changes: 8 additions & 4 deletions DS_Map/EditorPanels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,17 @@ public static class EditorPanels {
public static void Initialize(MainProgram mainProgram) {
MainProgram = mainProgram;
}
public static TabControl mainTabControl { get { return MainProgram.mainTabControl; } }

public static ScriptEditor scriptEditor { get { return MainProgram.scriptEditor; } }
public static LevelScriptEditor levelScriptEditor { get { return MainProgram.levelScriptEditor; } }
public static TabControl mainTabControl { get { return MainProgram.mainTabControl; } }

public static EncountersEditor encountersEditor { get { return MainProgram.encountersEditor; } }

public static TabPage scriptEditorTabPage { get { return MainProgram.tabPageScriptEditor; } }
public static TabPage levelScriptEditorTabPage { get { return MainProgram.tabPageLevelScriptEditor; } }

}
public static TabPage levelScriptEditorTabPage { get { return MainProgram.tabPageLevelScriptEditor; } }
public static TabPage tabPageEncountersEditor { get { return MainProgram.tabPageEncountersEditor; } }


}
}
Loading

0 comments on commit 0ab3d12

Please sign in to comment.