diff --git a/Source/Plugins/ZDoomUSDF/BuilderPlug.cs b/Source/Plugins/ZDoomUSDF/BuilderPlug.cs deleted file mode 100644 index 27406256..00000000 --- a/Source/Plugins/ZDoomUSDF/BuilderPlug.cs +++ /dev/null @@ -1,187 +0,0 @@ - -#region ================== Copyright (c) 2010 Pascal vd Heiden - -/* - * Copyright (c) 2010 Pascal vd Heiden - * This program is released under GNU General Public License - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - */ - -#endregion - -#region ================== Namespaces - -using System; -using System.Collections; -using System.Collections.Generic; -using System.Collections.ObjectModel; -using System.Globalization; -using System.Text; -using System.IO; -using System.Reflection; -using System.Windows.Forms; -using CodeImp.DoomBuilder.Controls; -using CodeImp.DoomBuilder.Windows; -using CodeImp.DoomBuilder.IO; -using CodeImp.DoomBuilder.Map; -using CodeImp.DoomBuilder.Rendering; -using CodeImp.DoomBuilder.Geometry; -using CodeImp.DoomBuilder.Editing; -using CodeImp.DoomBuilder.Plugins; -using CodeImp.DoomBuilder.Actions; -using CodeImp.DoomBuilder.Types; -using CodeImp.DoomBuilder.Config; -using CodeImp.DoomBuilder.Data; - -#endregion - -namespace CodeImp.DoomBuilder.ZDoomUSDF -{ - public class BuilderPlug : Plug - { - #region ================== Variables - - // Static instance - private static BuilderPlug me; - - // Tools form - private ToolsForm toolsform; - - // Main form - private MainForm mainform; - - #endregion - - #region ================== Properties - - // Static property to access the BuilderPlug - public static BuilderPlug Me { get { return me; } } - - // Is the editor opened? - public bool EditorOpen { get { return (mainform != null) && !mainform.IsDisposed; } } - - #endregion - - #region ================== Methods - - // This loads what is needed to support USDF - private void Load() - { - // Check if the map format has a DIALOGUE lump we can edit - bool editlump = false; - foreach(KeyValuePair lump in General.Map.Config.MapLumps) - { - if(lump.Key.Trim().ToUpperInvariant() == "DIALOGUE") - editlump = true; - } - - if(editlump) - { - // Load tools (this adds our button to the toolbar) - if(toolsform == null) - toolsform = new ToolsForm(); - } - } - - // This unloads everything - private void Unload() - { - if(mainform != null) - mainform.Dispose(); - - if(toolsform != null) - toolsform.Dispose(); - - toolsform = null; - } - - #endregion - - #region ================== Events - - // This event is called when the plugin is initialized - public override void OnInitialize() - { - base.OnInitialize(); - - // Keep a static reference - me = this; - - General.Actions.BindMethods(this); - } - - // This is called when the plugin is terminated - public override void Dispose() - { - General.Actions.UnbindMethods(this); - Unload(); - base.Dispose(); - } - - // New map started - public override void OnMapNewEnd() - { - base.OnMapNewEnd(); - Load(); - } - - // Map opened - public override void OnMapOpenEnd() - { - base.OnMapOpenEnd(); - Load(); - } - - // Map is being saved - public override void OnMapSaveBegin(SavePurpose purpose) - { - base.OnMapSaveBegin(purpose); - if(this.EditorOpen) - mainform.SaveData(); - } - - // Map closed - public override void OnMapCloseEnd() - { - base.OnMapCloseEnd(); - Unload(); - } - - // Map config changed - public override void OnMapReconfigure() - { - base.OnMapReconfigure(); - Unload(); - Load(); - } - - #endregion - - #region ================== Actions - - [BeginAction("opendialogeditor")] - public void OpenConversationEditor() - { - if(!this.EditorOpen) - { - mainform = new MainForm(); - - if(General.Settings.ScriptOnTop) - mainform.Show(General.Interface); - else - mainform.Show(); - } - else - { - mainform.Activate(); - } - } - - #endregion - } -} diff --git a/Source/Plugins/ZDoomUSDF/MainForm.Designer.cs b/Source/Plugins/ZDoomUSDF/MainForm.Designer.cs deleted file mode 100644 index f0901b5b..00000000 --- a/Source/Plugins/ZDoomUSDF/MainForm.Designer.cs +++ /dev/null @@ -1,54 +0,0 @@ -namespace CodeImp.DoomBuilder.ZDoomUSDF -{ - partial class MainForm - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if(disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.SuspendLayout(); - // - // MainForm - // - this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; - this.ClientSize = new System.Drawing.Size(813, 612); - this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.MinimizeBox = false; - this.Name = "MainForm"; - this.Opacity = 0; - this.StartPosition = System.Windows.Forms.FormStartPosition.Manual; - this.Text = "Dialog Editor"; - this.Load += new System.EventHandler(this.MainForm_Load); - this.Move += new System.EventHandler(this.MainForm_Move); - this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing); - this.ResizeEnd += new System.EventHandler(this.MainForm_ResizeEnd); - this.ResumeLayout(false); - - } - - #endregion - } -} \ No newline at end of file diff --git a/Source/Plugins/ZDoomUSDF/MainForm.cs b/Source/Plugins/ZDoomUSDF/MainForm.cs deleted file mode 100644 index 1a17e98b..00000000 --- a/Source/Plugins/ZDoomUSDF/MainForm.cs +++ /dev/null @@ -1,130 +0,0 @@ -#region === Copyright (c) 2010 Pascal van der Heiden === - -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Drawing; -using System.Text; -using System.Windows.Forms; -using CodeImp.DoomBuilder.Windows; -using System.IO; - -#endregion - -namespace CodeImp.DoomBuilder.ZDoomUSDF -{ - public partial class MainForm : DelayedForm - { - #region ================== Constants - - #endregion - - #region ================== Variables - - // Position/size - private Point lastposition; - private Size lastsize; - - #endregion - - #region ================== Properties - - #endregion - - #region ================== Constructor / Destructor - - // Constructor - public MainForm() - { - InitializeComponent(); - - // Load data from DIALOGUE lump - MemoryStream s = General.Map.GetLumpData("DIALOGUE"); - if(s != null) - { - - } - } - - #endregion - - #region ================== Methods - - // Called before the map is saved so we can save our data - public void SaveData() - { - } - - #endregion - - #region ================== Events - - // Form loaded - private void MainForm_Load(object sender, EventArgs e) - { - this.SuspendLayout(); - this.Location = new Point(General.Settings.ReadPluginSetting("mainwindow.positionx", this.Location.X), - General.Settings.ReadPluginSetting("mainwindow.positiony", this.Location.Y)); - this.Size = new Size(General.Settings.ReadPluginSetting("mainwindow.sizewidth", this.Size.Width), - General.Settings.ReadPluginSetting("mainwindow.sizeheight", this.Size.Height)); - this.WindowState = (FormWindowState)General.Settings.ReadPluginSetting("mainwindow.windowstate", (int)FormWindowState.Normal); - this.ResumeLayout(true); - - // Normal windowstate? - if(this.WindowState == FormWindowState.Normal) - { - // Keep last position and size - lastposition = this.Location; - lastsize = this.Size; - } - } - - // Form is being closed - private void MainForm_FormClosing(object sender, FormClosingEventArgs e) - { - int windowstate; - - // Determine window state to save - if(this.WindowState != FormWindowState.Minimized) - windowstate = (int)this.WindowState; - else - windowstate = (int)FormWindowState.Normal; - - // Save window settings - General.Settings.WritePluginSetting("mainwindow.positionx", lastposition.X); - General.Settings.WritePluginSetting("mainwindow.positiony", lastposition.Y); - General.Settings.WritePluginSetting("mainwindow.sizewidth", lastsize.Width); - General.Settings.WritePluginSetting("mainwindow.sizeheight", lastsize.Height); - General.Settings.WritePluginSetting("mainwindow.windowstate", windowstate); - - // Save dialog data - SaveData(); - } - - // Form resized - private void MainForm_ResizeEnd(object sender, EventArgs e) - { - // Normal windowstate? - if(this.WindowState == FormWindowState.Normal) - { - // Keep last position and size - lastposition = this.Location; - lastsize = this.Size; - } - } - - // Form moved - private void MainForm_Move(object sender, EventArgs e) - { - // Normal windowstate? - if(this.WindowState == FormWindowState.Normal) - { - // Keep last position and size - lastposition = this.Location; - lastsize = this.Size; - } - } - - #endregion - } -} \ No newline at end of file diff --git a/Source/Plugins/ZDoomUSDF/MainForm.resx b/Source/Plugins/ZDoomUSDF/MainForm.resx deleted file mode 100644 index ff31a6db..00000000 --- a/Source/Plugins/ZDoomUSDF/MainForm.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/Source/Plugins/ZDoomUSDF/Properties/AssemblyInfo.cs b/Source/Plugins/ZDoomUSDF/Properties/AssemblyInfo.cs deleted file mode 100644 index 1d8210ca..00000000 --- a/Source/Plugins/ZDoomUSDF/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("ZDoomUSDF")] -[assembly: AssemblyDescription("ZDoom USDF Editor plugin")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Doom Builder")] -[assembly: AssemblyCopyright("Copyright © 2010")] -[assembly: AssemblyTrademark("CodeImp")] -[assembly: AssemblyCulture("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("49d76fc2-0683-4fce-9a22-7b288061ffc2")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Source/Plugins/ZDoomUSDF/Properties/Resources.Designer.cs b/Source/Plugins/ZDoomUSDF/Properties/Resources.Designer.cs deleted file mode 100644 index e3617fbb..00000000 --- a/Source/Plugins/ZDoomUSDF/Properties/Resources.Designer.cs +++ /dev/null @@ -1,70 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:2.0.50727.3615 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace CodeImp.DoomBuilder.ZDoomUSDF.Properties { - using System; - - - /// - /// A strongly-typed resource class, for looking up localized strings, etc. - /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources { - - private static global::System.Resources.ResourceManager resourceMan; - - private static global::System.Globalization.CultureInfo resourceCulture; - - [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal Resources() { - } - - /// - /// Returns the cached ResourceManager instance used by this class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { - get { - if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("CodeImp.DoomBuilder.ZDoomUSDF.Properties.Resources", typeof(Resources).Assembly); - resourceMan = temp; - } - return resourceMan; - } - } - - /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. - /// - [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture { - get { - return resourceCulture; - } - set { - resourceCulture = value; - } - } - - internal static System.Drawing.Bitmap Dialog { - get { - object obj = ResourceManager.GetObject("Dialog", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - } -} diff --git a/Source/Plugins/ZDoomUSDF/Properties/Resources.resx b/Source/Plugins/ZDoomUSDF/Properties/Resources.resx deleted file mode 100644 index d13f79a2..00000000 --- a/Source/Plugins/ZDoomUSDF/Properties/Resources.resx +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - - ..\Resources\Dialog.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - \ No newline at end of file diff --git a/Source/Plugins/ZDoomUSDF/Resources/Actions.cfg b/Source/Plugins/ZDoomUSDF/Resources/Actions.cfg deleted file mode 100644 index 06c0725b..00000000 --- a/Source/Plugins/ZDoomUSDF/Resources/Actions.cfg +++ /dev/null @@ -1,15 +0,0 @@ -/******************************************\ - Doom Builder Actions Configuration -\******************************************/ - - -opendialogeditor -{ - title = "Dialog Editor"; - category = "view"; - description = "This opens the dialog editor that allows you to edit DIALOGUE conversations in your map."; - allowkeys = true; - allowmouse = true; - allowscroll = true; -} - diff --git a/Source/Plugins/ZDoomUSDF/Resources/Dialog.png b/Source/Plugins/ZDoomUSDF/Resources/Dialog.png deleted file mode 100644 index 1bbc62c7..00000000 Binary files a/Source/Plugins/ZDoomUSDF/Resources/Dialog.png and /dev/null differ diff --git a/Source/Plugins/ZDoomUSDF/ToolsForm.Designer.cs b/Source/Plugins/ZDoomUSDF/ToolsForm.Designer.cs deleted file mode 100644 index 7306b119..00000000 --- a/Source/Plugins/ZDoomUSDF/ToolsForm.Designer.cs +++ /dev/null @@ -1,107 +0,0 @@ -namespace CodeImp.DoomBuilder.ZDoomUSDF -{ - partial class ToolsForm - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.toolstrip = new System.Windows.Forms.ToolStrip(); - this.dialogbutton = new System.Windows.Forms.ToolStripButton(); - this.menuStrip1 = new System.Windows.Forms.MenuStrip(); - this.editmenu = new System.Windows.Forms.ToolStripMenuItem(); - this.dialogitem = new System.Windows.Forms.ToolStripMenuItem(); - this.toolstrip.SuspendLayout(); - this.menuStrip1.SuspendLayout(); - this.SuspendLayout(); - // - // toolstrip - // - this.toolstrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.dialogbutton}); - this.toolstrip.Location = new System.Drawing.Point(0, 24); - this.toolstrip.Name = "toolstrip"; - this.toolstrip.Size = new System.Drawing.Size(196, 25); - this.toolstrip.TabIndex = 0; - this.toolstrip.Text = "toolStrip1"; - // - // dialogbutton - // - this.dialogbutton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; - this.dialogbutton.Image = global::CodeImp.DoomBuilder.ZDoomUSDF.Properties.Resources.Dialog; - this.dialogbutton.ImageTransparentColor = System.Drawing.Color.Magenta; - this.dialogbutton.Name = "dialogbutton"; - this.dialogbutton.Size = new System.Drawing.Size(23, 22); - this.dialogbutton.Tag = "opendialogeditor"; - this.dialogbutton.Text = "Open Dialog Editor"; - this.dialogbutton.Click += new System.EventHandler(this.InvokeTaggedAction); - // - // menuStrip1 - // - this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.editmenu}); - this.menuStrip1.Location = new System.Drawing.Point(0, 0); - this.menuStrip1.Name = "menuStrip1"; - this.menuStrip1.Size = new System.Drawing.Size(196, 24); - this.menuStrip1.TabIndex = 1; - this.menuStrip1.Text = "menuStrip1"; - // - // editmenu - // - this.editmenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { - this.dialogitem}); - this.editmenu.Name = "editmenu"; - this.editmenu.Size = new System.Drawing.Size(39, 20); - this.editmenu.Text = "Edit"; - // - // dialogitem - // - this.dialogitem.Image = global::CodeImp.DoomBuilder.ZDoomUSDF.Properties.Resources.Dialog; - this.dialogitem.Name = "dialogitem"; - this.dialogitem.Size = new System.Drawing.Size(152, 22); - this.dialogitem.Tag = "opendialogeditor"; - this.dialogitem.Text = "Dialog Editor..."; - this.dialogitem.Click += new System.EventHandler(this.InvokeTaggedAction); - // - // ToolsForm - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(196, 78); - this.Controls.Add(this.toolstrip); - this.Controls.Add(this.menuStrip1); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; - this.MainMenuStrip = this.menuStrip1; - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "ToolsForm"; - this.ShowIcon = false; - this.ShowInTaskbar = false; - this.Text = "ToolsForm"; - this.toolstrip.ResumeLayout(false); - this.toolstrip.PerformLayout(); - this.menuStrip1.ResumeLayout(false); - this.menuStrip1.PerformLayout(); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.ToolStrip toolstrip; - private System.Windows.Forms.ToolStripButton dialogbutton; - private System.Windows.Forms.MenuStrip menuStrip1; - private System.Windows.Forms.ToolStripMenuItem editmenu; - private System.Windows.Forms.ToolStripMenuItem dialogitem; - } -} \ No newline at end of file diff --git a/Source/Plugins/ZDoomUSDF/ToolsForm.cs b/Source/Plugins/ZDoomUSDF/ToolsForm.cs deleted file mode 100644 index a6a6e76d..00000000 --- a/Source/Plugins/ZDoomUSDF/ToolsForm.cs +++ /dev/null @@ -1,71 +0,0 @@ -#region === Copyright (c) 2010 Pascal van der Heiden === - -using System; -using System.Collections; -using System.Collections.Generic; -using System.Globalization; -using System.Text; -using System.ComponentModel; -using System.Windows.Forms; -using CodeImp.DoomBuilder.Windows; - -#endregion - -namespace CodeImp.DoomBuilder.ZDoomUSDF -{ - public partial class ToolsForm : Form - { - #region ================== Constants - - #endregion - - #region ================== Variables - - #endregion - - #region ================== Properties - - #endregion - - #region ================== Constructor / Destructor - - // Constructor - public ToolsForm() - { - InitializeComponent(); - - General.Interface.AddButton(dialogbutton, ToolbarSection.Script); - General.Interface.AddMenu(dialogitem, MenuSection.ViewScriptEdit); - } - - // Disposer - protected override void Dispose(bool disposing) - { - if(disposing && (components != null)) - { - components.Dispose(); - } - - General.Interface.RemoveButton(dialogbutton); - General.Interface.RemoveMenu(dialogitem); - - base.Dispose(disposing); - } - - #endregion - - #region ================== Methods - - // This invokes an action from control event - private void InvokeTaggedAction(object sender, EventArgs e) - { - General.Interface.InvokeTaggedAction(sender, e); - } - - #endregion - - #region ================== Events - - #endregion - } -} diff --git a/Source/Plugins/ZDoomUSDF/ToolsForm.resx b/Source/Plugins/ZDoomUSDF/ToolsForm.resx deleted file mode 100644 index 7b5cc740..00000000 --- a/Source/Plugins/ZDoomUSDF/ToolsForm.resx +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - 17, 17 - - - 114, 17 - - \ No newline at end of file diff --git a/Source/Plugins/ZDoomUSDF/ZDoomUSDF.csproj b/Source/Plugins/ZDoomUSDF/ZDoomUSDF.csproj deleted file mode 100644 index 09f7c8d0..00000000 --- a/Source/Plugins/ZDoomUSDF/ZDoomUSDF.csproj +++ /dev/null @@ -1,95 +0,0 @@ - - - - Debug - AnyCPU - 8.0.50727 - 2.0 - {CC9BAD62-C57B-45A0-BC5D-172A2957ADC7} - Library - Properties - CodeImp.DoomBuilder.ZDoomUSDF - ZDoomUSDF - v3.5 - 512 - - - true - ..\..\..\Build\Plugins\ - DEBUG;TRACE - true - full - x86 - prompt - - - ..\..\..\Build\Plugins\ - true - true - pdbonly - x86 - prompt - - - - - 3.5 - - - - - - - - Form - - - MainForm.cs - - - - True - True - Resources.resx - - - Form - - - ToolsForm.cs - - - - - ResXFileCodeGenerator - Resources.Designer.cs - Designer - - - ToolsForm.cs - Designer - - - - - {818B3D10-F791-4C3F-9AF5-BB2D0079B63C} - Builder - - - - - Designer - MainForm.cs - - - - - - - \ No newline at end of file