76 lines
2.9 KiB
C#
76 lines
2.9 KiB
C#
//
|
|
// Copyright 2020 Electronic Arts Inc.
|
|
//
|
|
// The Command & Conquer Map Editor and corresponding source code is free
|
|
// software: you can redistribute it and/or modify it under the terms of
|
|
// the GNU General Public License as published by the Free Software Foundation,
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
|
|
// The Command & Conquer Map Editor and corresponding source code is distributed
|
|
// in the hope that it will be useful, but with permitted additional restrictions
|
|
// under Section 7 of the GPL. See the GNU General Public License in LICENSE.TXT
|
|
// distributed with this program. You should have received a copy of the
|
|
// GNU General Public License along with permitted additional restrictions
|
|
// with this program. If not, see https://github.com/electronicarts/CnC_Remastered_Collection
|
|
namespace MobiusEditor.Controls
|
|
{
|
|
partial class BriefingSettings
|
|
{
|
|
/// <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 Component 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.briefingTxt = new System.Windows.Forms.TextBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// briefingTxt
|
|
//
|
|
this.briefingTxt.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.briefingTxt.Location = new System.Drawing.Point(0, 0);
|
|
this.briefingTxt.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
|
this.briefingTxt.Multiline = true;
|
|
this.briefingTxt.Name = "briefingTxt";
|
|
this.briefingTxt.Size = new System.Drawing.Size(600, 400);
|
|
this.briefingTxt.TabIndex = 0;
|
|
//
|
|
// BriefingSettings
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.briefingTxt);
|
|
this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
|
|
this.Name = "BriefingSettings";
|
|
this.Size = new System.Drawing.Size(600, 400);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox briefingTxt;
|
|
}
|
|
}
|