- Doorway Linking is now completed. - Auto-Generated Rooms are now linked back to the Doorway that created them. Runtime: - Began implementing a very simple Runtime for offline testing. Engine: - Room Editor now saves a Room after it has had a Doorway change made to it. - Fixed the missing Doorways issue after closing the Room Editor.
98 lines
No EOL
4 KiB
C#
98 lines
No EOL
4 KiB
C#
namespace MudDesigner
|
|
{
|
|
partial class Runtime
|
|
{
|
|
/// <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()
|
|
{
|
|
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
|
this.txtCommand = new System.Windows.Forms.TextBox();
|
|
this.txtConsole = new System.Windows.Forms.RichTextBox();
|
|
this.splitContainer1.Panel1.SuspendLayout();
|
|
this.splitContainer1.Panel2.SuspendLayout();
|
|
this.splitContainer1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// splitContainer1
|
|
//
|
|
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
|
|
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
|
|
this.splitContainer1.Name = "splitContainer1";
|
|
this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
|
//
|
|
// splitContainer1.Panel1
|
|
//
|
|
this.splitContainer1.Panel1.Controls.Add(this.txtConsole);
|
|
//
|
|
// splitContainer1.Panel2
|
|
//
|
|
this.splitContainer1.Panel2.Controls.Add(this.txtCommand);
|
|
this.splitContainer1.Size = new System.Drawing.Size(693, 422);
|
|
this.splitContainer1.SplitterDistance = 393;
|
|
this.splitContainer1.TabIndex = 0;
|
|
//
|
|
// txtCommand
|
|
//
|
|
this.txtCommand.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.txtCommand.Location = new System.Drawing.Point(0, 0);
|
|
this.txtCommand.Name = "txtCommand";
|
|
this.txtCommand.Size = new System.Drawing.Size(693, 20);
|
|
this.txtCommand.TabIndex = 1;
|
|
this.txtCommand.TextChanged += new System.EventHandler(this.txtCommand_TextChanged);
|
|
//
|
|
// txtConsole
|
|
//
|
|
this.txtConsole.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.txtConsole.Location = new System.Drawing.Point(0, 0);
|
|
this.txtConsole.Name = "txtConsole";
|
|
this.txtConsole.Size = new System.Drawing.Size(693, 393);
|
|
this.txtConsole.TabIndex = 0;
|
|
this.txtConsole.Text = "";
|
|
//
|
|
// Runtime
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(693, 422);
|
|
this.Controls.Add(this.splitContainer1);
|
|
this.Name = "Runtime";
|
|
this.Text = "Runtime";
|
|
this.splitContainer1.Panel1.ResumeLayout(false);
|
|
this.splitContainer1.Panel2.ResumeLayout(false);
|
|
this.splitContainer1.Panel2.PerformLayout();
|
|
this.splitContainer1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.SplitContainer splitContainer1;
|
|
private System.Windows.Forms.RichTextBox txtConsole;
|
|
private System.Windows.Forms.TextBox txtCommand;
|
|
}
|
|
} |