Worms4Editor/W4Gui/Main.Designer.cs

393 lines
20 KiB
C#
Raw Normal View History

2023-01-12 03:50:02 +00:00
using W4Gui.Tabs;
2023-02-16 04:12:22 +00:00
using W4Gui.Tabs.VariablesTab;
2023-01-12 03:50:02 +00:00
namespace W4Gui
2023-01-11 09:22:45 +00:00
{
partial class Main
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
2023-02-28 21:42:37 +00:00
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main));
2023-01-11 09:22:45 +00:00
this.mainMenuStrip = new System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
2023-01-12 03:50:02 +00:00
this.convertToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.convertToPS2ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.convertToXboxToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.extractAllXomContainersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
2023-01-11 09:22:45 +00:00
this.mainTabControl = new System.Windows.Forms.TabControl();
2023-01-12 03:50:02 +00:00
this.weaponTab = new System.Windows.Forms.TabPage();
this.weaponPage = new W4Gui.Tabs.WeaponsTab();
2023-01-13 12:28:44 +00:00
this.teamTab = new System.Windows.Forms.TabPage();
this.teamsPage = new W4Gui.Tabs.TeamsTab();
2023-01-15 03:46:18 +00:00
this.schemeTab = new System.Windows.Forms.TabPage();
2023-02-16 04:12:22 +00:00
this.schemesPage = new W4Gui.Tabs.SchemeTab();
2023-01-15 03:46:18 +00:00
this.highscoreTab = new System.Windows.Forms.TabPage();
this.highscoresPage = new W4Gui.Tabs.HighscoresTab();
2023-02-16 04:12:22 +00:00
this.unlockItemsTab = new System.Windows.Forms.TabPage();
2023-02-23 09:43:15 +00:00
this.unlockableItemsPanel = new W4Gui.Tabs.UnlockableItemsTab();
2023-01-15 03:46:18 +00:00
this.inputTab = new System.Windows.Forms.TabPage();
2023-02-28 21:42:37 +00:00
this.inputEventMappingsPanel = new W4Gui.Tabs.InputEventMappingTab();
2023-02-25 06:46:12 +00:00
this.statsTab = new System.Windows.Forms.TabPage();
2023-02-23 09:43:15 +00:00
this.awardsTab = new System.Windows.Forms.TabPage();
2023-02-28 21:42:37 +00:00
this.awardPanel = new W4Gui.Tabs.AwardTab();
2023-01-15 03:46:18 +00:00
this.variablesTab = new System.Windows.Forms.TabPage();
2023-02-16 04:12:22 +00:00
this.variablesPage = new W4Gui.Tabs.VariablesTab.VariablesTabs();
2023-01-11 09:22:45 +00:00
this.mainMenuStrip.SuspendLayout();
this.mainTabControl.SuspendLayout();
2023-01-12 03:50:02 +00:00
this.weaponTab.SuspendLayout();
2023-01-13 12:28:44 +00:00
this.teamTab.SuspendLayout();
2023-01-19 07:56:12 +00:00
this.schemeTab.SuspendLayout();
2023-01-15 03:46:18 +00:00
this.highscoreTab.SuspendLayout();
2023-02-23 09:43:15 +00:00
this.unlockItemsTab.SuspendLayout();
2023-02-28 21:42:37 +00:00
this.inputTab.SuspendLayout();
this.awardsTab.SuspendLayout();
2023-02-16 04:12:22 +00:00
this.variablesTab.SuspendLayout();
2023-01-11 09:22:45 +00:00
this.SuspendLayout();
//
// mainMenuStrip
//
this.mainMenuStrip.BackColor = System.Drawing.SystemColors.Control;
this.mainMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
2023-01-12 03:50:02 +00:00
this.fileToolStripMenuItem,
this.convertToolStripMenuItem});
2023-01-11 09:22:45 +00:00
this.mainMenuStrip.Location = new System.Drawing.Point(0, 0);
this.mainMenuStrip.Name = "mainMenuStrip";
this.mainMenuStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
2023-02-16 04:12:22 +00:00
this.mainMenuStrip.Size = new System.Drawing.Size(913, 24);
2023-01-11 09:22:45 +00:00
this.mainMenuStrip.TabIndex = 0;
this.mainMenuStrip.Text = "Menu Strip";
//
// fileToolStripMenuItem
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.openToolStripMenuItem,
this.saveToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
this.fileToolStripMenuItem.Text = "File";
//
// openToolStripMenuItem
//
this.openToolStripMenuItem.Name = "openToolStripMenuItem";
2023-01-12 03:50:02 +00:00
this.openToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
2023-01-11 09:22:45 +00:00
this.openToolStripMenuItem.Text = "Open";
this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
//
// saveToolStripMenuItem
//
this.saveToolStripMenuItem.Enabled = false;
this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
2023-01-12 03:50:02 +00:00
this.saveToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
2023-01-11 09:22:45 +00:00
this.saveToolStripMenuItem.Text = "Save";
this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
//
2023-01-12 03:50:02 +00:00
// convertToolStripMenuItem
//
this.convertToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.convertToPS2ToolStripMenuItem,
this.convertToXboxToolStripMenuItem,
this.extractAllXomContainersToolStripMenuItem});
this.convertToolStripMenuItem.Enabled = false;
this.convertToolStripMenuItem.Name = "convertToolStripMenuItem";
this.convertToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
this.convertToolStripMenuItem.Text = "Convert";
//
// convertToPS2ToolStripMenuItem
//
this.convertToPS2ToolStripMenuItem.Name = "convertToPS2ToolStripMenuItem";
this.convertToPS2ToolStripMenuItem.Size = new System.Drawing.Size(211, 22);
this.convertToPS2ToolStripMenuItem.Text = "Convert to PS2";
2023-02-23 09:43:15 +00:00
this.convertToPS2ToolStripMenuItem.Click += new System.EventHandler(this.convertToPS2ToolStripMenuItem_Click);
2023-01-12 03:50:02 +00:00
//
// convertToXboxToolStripMenuItem
//
this.convertToXboxToolStripMenuItem.Name = "convertToXboxToolStripMenuItem";
this.convertToXboxToolStripMenuItem.Size = new System.Drawing.Size(211, 22);
this.convertToXboxToolStripMenuItem.Text = "Convert to Xbox";
//
// extractAllXomContainersToolStripMenuItem
//
this.extractAllXomContainersToolStripMenuItem.Name = "extractAllXomContainersToolStripMenuItem";
this.extractAllXomContainersToolStripMenuItem.Size = new System.Drawing.Size(211, 22);
this.extractAllXomContainersToolStripMenuItem.Text = "Extract All XomContainers";
this.extractAllXomContainersToolStripMenuItem.Click += new System.EventHandler(this.extractAllXomContainersToolStripMenuItem_Click);
//
2023-01-11 09:22:45 +00:00
// mainTabControl
//
2023-01-12 03:50:02 +00:00
this.mainTabControl.Controls.Add(this.weaponTab);
this.mainTabControl.Controls.Add(this.teamTab);
2023-01-15 03:46:18 +00:00
this.mainTabControl.Controls.Add(this.schemeTab);
this.mainTabControl.Controls.Add(this.highscoreTab);
2023-02-16 04:12:22 +00:00
this.mainTabControl.Controls.Add(this.unlockItemsTab);
2023-01-15 03:46:18 +00:00
this.mainTabControl.Controls.Add(this.inputTab);
2023-02-25 06:46:12 +00:00
this.mainTabControl.Controls.Add(this.statsTab);
2023-02-23 09:43:15 +00:00
this.mainTabControl.Controls.Add(this.awardsTab);
2023-01-15 03:46:18 +00:00
this.mainTabControl.Controls.Add(this.variablesTab);
2023-01-11 09:22:45 +00:00
this.mainTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
this.mainTabControl.Enabled = false;
this.mainTabControl.HotTrack = true;
this.mainTabControl.Location = new System.Drawing.Point(0, 24);
this.mainTabControl.Name = "mainTabControl";
this.mainTabControl.SelectedIndex = 0;
2023-02-16 04:12:22 +00:00
this.mainTabControl.Size = new System.Drawing.Size(913, 537);
2023-01-11 09:22:45 +00:00
this.mainTabControl.TabIndex = 1;
2023-02-16 04:12:22 +00:00
this.mainTabControl.SelectedIndexChanged += new System.EventHandler(this.mainTabControl_SelectedIndexChanged);
2023-01-11 09:22:45 +00:00
//
2023-01-12 03:50:02 +00:00
// weaponTab
//
this.weaponTab.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.weaponTab.Controls.Add(this.weaponPage);
this.weaponTab.Location = new System.Drawing.Point(4, 24);
this.weaponTab.Name = "weaponTab";
this.weaponTab.Padding = new System.Windows.Forms.Padding(3);
2023-02-16 04:12:22 +00:00
this.weaponTab.Size = new System.Drawing.Size(905, 509);
2023-01-12 03:50:02 +00:00
this.weaponTab.TabIndex = 0;
this.weaponTab.Text = "Weapons";
this.weaponTab.UseVisualStyleBackColor = true;
//
// weaponPage
//
this.weaponPage.Dock = System.Windows.Forms.DockStyle.Fill;
this.weaponPage.Location = new System.Drawing.Point(3, 3);
this.weaponPage.Name = "weaponPage";
2023-02-16 04:12:22 +00:00
this.weaponPage.Size = new System.Drawing.Size(895, 499);
2023-01-12 03:50:02 +00:00
this.weaponPage.TabIndex = 0;
2023-01-11 09:22:45 +00:00
//
2023-01-13 12:28:44 +00:00
// teamTab
//
2023-01-14 01:00:48 +00:00
this.teamTab.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
2023-01-13 12:28:44 +00:00
this.teamTab.Controls.Add(this.teamsPage);
this.teamTab.Location = new System.Drawing.Point(4, 24);
this.teamTab.Name = "teamTab";
2023-01-14 01:00:48 +00:00
this.teamTab.Padding = new System.Windows.Forms.Padding(3);
2023-02-28 21:42:37 +00:00
this.teamTab.Size = new System.Drawing.Size(192, 72);
2023-01-13 12:28:44 +00:00
this.teamTab.TabIndex = 1;
this.teamTab.Text = "Teams";
this.teamTab.UseVisualStyleBackColor = true;
//
// teamsPage
//
this.teamsPage.Dock = System.Windows.Forms.DockStyle.Fill;
2023-01-14 01:00:48 +00:00
this.teamsPage.Location = new System.Drawing.Point(3, 3);
2023-01-13 12:28:44 +00:00
this.teamsPage.Name = "teamsPage";
2023-02-28 21:42:37 +00:00
this.teamsPage.Size = new System.Drawing.Size(182, 62);
2023-01-13 12:28:44 +00:00
this.teamsPage.TabIndex = 0;
//
2023-01-15 03:46:18 +00:00
// schemeTab
//
this.schemeTab.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
2023-01-19 07:56:12 +00:00
this.schemeTab.Controls.Add(this.schemesPage);
2023-01-15 03:46:18 +00:00
this.schemeTab.Location = new System.Drawing.Point(4, 24);
this.schemeTab.Name = "schemeTab";
2023-02-16 04:12:22 +00:00
this.schemeTab.Padding = new System.Windows.Forms.Padding(3);
2023-02-28 21:42:37 +00:00
this.schemeTab.Size = new System.Drawing.Size(192, 72);
2023-01-15 03:46:18 +00:00
this.schemeTab.TabIndex = 3;
this.schemeTab.Text = "Schemes";
this.schemeTab.UseVisualStyleBackColor = true;
//
2023-02-16 04:12:22 +00:00
// schemesPage
//
this.schemesPage.Dock = System.Windows.Forms.DockStyle.Fill;
this.schemesPage.Location = new System.Drawing.Point(3, 3);
this.schemesPage.Name = "schemesPage";
2023-02-28 21:42:37 +00:00
this.schemesPage.Size = new System.Drawing.Size(182, 62);
2023-02-16 04:12:22 +00:00
this.schemesPage.TabIndex = 0;
//
2023-01-15 03:46:18 +00:00
// highscoreTab
//
this.highscoreTab.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.highscoreTab.Controls.Add(this.highscoresPage);
this.highscoreTab.Location = new System.Drawing.Point(4, 24);
this.highscoreTab.Name = "highscoreTab";
2023-02-16 04:12:22 +00:00
this.highscoreTab.Padding = new System.Windows.Forms.Padding(3);
2023-02-28 21:42:37 +00:00
this.highscoreTab.Size = new System.Drawing.Size(192, 72);
2023-01-15 03:46:18 +00:00
this.highscoreTab.TabIndex = 2;
this.highscoreTab.Text = "Highscores";
this.highscoreTab.UseVisualStyleBackColor = true;
//
// highscoresPage
//
this.highscoresPage.Dock = System.Windows.Forms.DockStyle.Fill;
this.highscoresPage.Location = new System.Drawing.Point(3, 3);
this.highscoresPage.Name = "highscoresPage";
2023-02-28 21:42:37 +00:00
this.highscoresPage.Size = new System.Drawing.Size(182, 62);
2023-01-15 03:46:18 +00:00
this.highscoresPage.TabIndex = 0;
//
2023-02-16 04:12:22 +00:00
// unlockItemsTab
//
this.unlockItemsTab.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
2023-02-23 09:43:15 +00:00
this.unlockItemsTab.Controls.Add(this.unlockableItemsPanel);
2023-02-16 04:12:22 +00:00
this.unlockItemsTab.Location = new System.Drawing.Point(4, 24);
this.unlockItemsTab.Name = "unlockItemsTab";
this.unlockItemsTab.Padding = new System.Windows.Forms.Padding(3);
2023-02-28 21:42:37 +00:00
this.unlockItemsTab.Size = new System.Drawing.Size(192, 72);
2023-02-16 04:12:22 +00:00
this.unlockItemsTab.TabIndex = 6;
this.unlockItemsTab.Text = "Unlockable Items";
this.unlockItemsTab.UseVisualStyleBackColor = true;
//
2023-02-23 09:43:15 +00:00
// unlockableItemsPanel
//
this.unlockableItemsPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.unlockableItemsPanel.Location = new System.Drawing.Point(3, 3);
this.unlockableItemsPanel.Name = "unlockableItemsPanel";
2023-02-28 21:42:37 +00:00
this.unlockableItemsPanel.Size = new System.Drawing.Size(182, 62);
2023-02-23 09:43:15 +00:00
this.unlockableItemsPanel.TabIndex = 0;
//
2023-01-15 03:46:18 +00:00
// inputTab
//
this.inputTab.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
2023-02-28 21:42:37 +00:00
this.inputTab.Controls.Add(this.inputEventMappingsPanel);
2023-01-15 03:46:18 +00:00
this.inputTab.Location = new System.Drawing.Point(4, 24);
this.inputTab.Name = "inputTab";
2023-02-28 21:42:37 +00:00
this.inputTab.Padding = new System.Windows.Forms.Padding(3);
this.inputTab.Size = new System.Drawing.Size(192, 72);
2023-01-15 03:46:18 +00:00
this.inputTab.TabIndex = 4;
this.inputTab.Text = "Input Settings";
this.inputTab.UseVisualStyleBackColor = true;
//
2023-02-28 21:42:37 +00:00
// inputEventMappingsPanel
//
this.inputEventMappingsPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.inputEventMappingsPanel.Location = new System.Drawing.Point(3, 3);
this.inputEventMappingsPanel.Name = "inputEventMappingsPanel";
this.inputEventMappingsPanel.Size = new System.Drawing.Size(182, 62);
this.inputEventMappingsPanel.TabIndex = 0;
//
2023-02-25 06:46:12 +00:00
// statsTab
2023-02-23 09:43:15 +00:00
//
2023-02-25 06:46:12 +00:00
this.statsTab.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.statsTab.Location = new System.Drawing.Point(4, 24);
this.statsTab.Name = "statsTab";
this.statsTab.Padding = new System.Windows.Forms.Padding(3);
2023-02-28 21:42:37 +00:00
this.statsTab.Size = new System.Drawing.Size(192, 72);
2023-02-25 06:46:12 +00:00
this.statsTab.TabIndex = 7;
this.statsTab.Text = "Statistics";
this.statsTab.UseVisualStyleBackColor = true;
2023-02-23 09:43:15 +00:00
//
// awardsTab
//
this.awardsTab.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
2023-02-28 21:42:37 +00:00
this.awardsTab.Controls.Add(this.awardPanel);
2023-02-23 09:43:15 +00:00
this.awardsTab.Location = new System.Drawing.Point(4, 24);
this.awardsTab.Name = "awardsTab";
this.awardsTab.Padding = new System.Windows.Forms.Padding(3);
2023-02-28 21:42:37 +00:00
this.awardsTab.Size = new System.Drawing.Size(192, 72);
2023-02-23 09:43:15 +00:00
this.awardsTab.TabIndex = 8;
this.awardsTab.Text = "Awards";
this.awardsTab.UseVisualStyleBackColor = true;
//
2023-02-28 21:42:37 +00:00
// awardPanel
//
this.awardPanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.awardPanel.Location = new System.Drawing.Point(3, 3);
this.awardPanel.Name = "awardPanel";
this.awardPanel.Size = new System.Drawing.Size(182, 62);
this.awardPanel.TabIndex = 0;
//
2023-01-15 03:46:18 +00:00
// variablesTab
//
this.variablesTab.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
2023-02-16 04:12:22 +00:00
this.variablesTab.Controls.Add(this.variablesPage);
2023-01-15 03:46:18 +00:00
this.variablesTab.Location = new System.Drawing.Point(4, 24);
this.variablesTab.Name = "variablesTab";
2023-02-16 04:12:22 +00:00
this.variablesTab.Padding = new System.Windows.Forms.Padding(3);
2023-02-28 21:42:37 +00:00
this.variablesTab.Size = new System.Drawing.Size(192, 72);
2023-01-15 03:46:18 +00:00
this.variablesTab.TabIndex = 5;
this.variablesTab.Text = "Variables";
this.variablesTab.UseVisualStyleBackColor = true;
//
2023-02-16 04:12:22 +00:00
// variablesPage
2023-01-19 07:56:12 +00:00
//
2023-02-23 09:43:15 +00:00
this.variablesPage.BackColor = System.Drawing.SystemColors.Control;
2023-02-16 04:12:22 +00:00
this.variablesPage.Dock = System.Windows.Forms.DockStyle.Fill;
this.variablesPage.Location = new System.Drawing.Point(3, 3);
this.variablesPage.Name = "variablesPage";
2023-02-28 21:42:37 +00:00
this.variablesPage.Size = new System.Drawing.Size(182, 62);
2023-02-16 04:12:22 +00:00
this.variablesPage.TabIndex = 0;
2023-01-19 07:56:12 +00:00
//
2023-01-11 09:22:45 +00:00
// Main
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.LightGray;
2023-02-16 04:12:22 +00:00
this.ClientSize = new System.Drawing.Size(913, 561);
2023-01-11 09:22:45 +00:00
this.Controls.Add(this.mainTabControl);
this.Controls.Add(this.mainMenuStrip);
2023-01-13 12:28:44 +00:00
this.DoubleBuffered = true;
2023-02-28 21:42:37 +00:00
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
2023-01-11 09:22:45 +00:00
this.MainMenuStrip = this.mainMenuStrip;
this.Name = "Main";
this.Text = "Worms 4: Mayhem! (Save Editor)";
this.Load += new System.EventHandler(this.W4Gui_Load);
this.mainMenuStrip.ResumeLayout(false);
this.mainMenuStrip.PerformLayout();
this.mainTabControl.ResumeLayout(false);
2023-01-12 03:50:02 +00:00
this.weaponTab.ResumeLayout(false);
2023-01-13 12:28:44 +00:00
this.teamTab.ResumeLayout(false);
2023-01-19 07:56:12 +00:00
this.schemeTab.ResumeLayout(false);
2023-01-15 03:46:18 +00:00
this.highscoreTab.ResumeLayout(false);
2023-02-23 09:43:15 +00:00
this.unlockItemsTab.ResumeLayout(false);
2023-02-28 21:42:37 +00:00
this.inputTab.ResumeLayout(false);
this.awardsTab.ResumeLayout(false);
2023-02-16 04:12:22 +00:00
this.variablesTab.ResumeLayout(false);
2023-01-11 09:22:45 +00:00
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private MenuStrip mainMenuStrip;
private ToolStripMenuItem fileToolStripMenuItem;
private ToolStripMenuItem openToolStripMenuItem;
private ToolStripMenuItem saveToolStripMenuItem;
private TabControl mainTabControl;
2023-01-12 03:50:02 +00:00
private TabPage weaponTab;
private WeaponsTab weaponPage;
private ToolStripMenuItem convertToolStripMenuItem;
private ToolStripMenuItem convertToPS2ToolStripMenuItem;
private ToolStripMenuItem convertToXboxToolStripMenuItem;
private ToolStripMenuItem extractAllXomContainersToolStripMenuItem;
private TabPage teamTab;
2023-01-13 12:28:44 +00:00
private TeamsTab teamsPage;
2023-01-15 03:46:18 +00:00
private TabPage schemeTab;
private TabPage highscoreTab;
private TabPage inputTab;
private TabPage variablesTab;
private HighscoresTab highscoresPage;
2023-01-19 07:56:12 +00:00
private SchemeTab schemesPage;
2023-02-16 04:12:22 +00:00
private TabPage unlockItemsTab;
private VariablesTabs variablesPage;
2023-02-23 09:43:15 +00:00
private UnlockableItemsTab unlockableItemsPanel;
2023-02-25 06:46:12 +00:00
private TabPage statsTab;
2023-02-23 09:43:15 +00:00
private TabPage awardsTab;
2023-02-28 21:42:37 +00:00
private AwardTab awardPanel;
private InputEventMappingTab inputEventMappingsPanel;
2023-01-11 09:22:45 +00:00
}
}