diff --git a/DS_Map/AddressHelper.cs b/DS_Map/AddressHelper.cs
index c2b2ced..d5c383f 100644
--- a/DS_Map/AddressHelper.cs
+++ b/DS_Map/AddressHelper.cs
@@ -34,8 +34,7 @@ namespace DSPRE
for (int i = 0; i < foundInOvl.Count; i++)
{
int ovl = foundInOvl[i];
- Console.WriteLine(ovl);
- addressesGrid.Rows.Add(ovl, getOffsetInOverlay(convertedAddress, ovl));
+ addressesGrid.Rows.Add("Overlay " + ovl, getOffsetInOverlay(convertedAddress, ovl));
}
@@ -52,7 +51,7 @@ namespace DSPRE
if (convertedAddress >= RomInfo.synthOverlayLoadAddress)
{
- addressesGrid.Rows.Add("SynthOVL", "?");
+ addressesGrid.Rows.Add("SynthOVL", $"0x{convertedAddress - RomInfo.synthOverlayLoadAddress:X4}");
}
}
catch
@@ -71,7 +70,7 @@ namespace DSPRE
uint currentOvlAddress = OverlayUtils.OverlayTable.GetRAMAddress(i);
bool checkOverlayN = currentOvlAddress >= address;
bool checkOverlayN1 = address < (currentOvlAddress + OverlayUtils.OverlayTable.GetUncompressedSize(i));
- Console.WriteLine(currentOvlAddress);
+
if (checkOverlayN && checkOverlayN1)
{
overlayNumbers.Add(i);
diff --git a/DS_Map/DSPRE.csproj b/DS_Map/DSPRE.csproj
index 2b61dd5..2ddf6d7 100644
--- a/DS_Map/DSPRE.csproj
+++ b/DS_Map/DSPRE.csproj
@@ -687,6 +687,7 @@
+
@@ -700,6 +701,7 @@
+
Always
diff --git a/DS_Map/Editors/WeatherEditor.Designer.cs b/DS_Map/Editors/WeatherEditor.Designer.cs
index 99714b6..0a88ff9 100644
--- a/DS_Map/Editors/WeatherEditor.Designer.cs
+++ b/DS_Map/Editors/WeatherEditor.Designer.cs
@@ -272,7 +272,7 @@
//
// removeLastRow
//
- this.removeLastRow.Image = global::DSPRE.Properties.Resources.deleteIcon1;
+ this.removeLastRow.Image = global::DSPRE.Properties.Resources.deleteIcon;
this.removeLastRow.Location = new System.Drawing.Point(501, 467);
this.removeLastRow.Name = "removeLastRow";
this.removeLastRow.Padding = new System.Windows.Forms.Padding(10, 0, 10, 0);
@@ -285,7 +285,7 @@
//
// removeFirstRow
//
- this.removeFirstRow.Image = global::DSPRE.Properties.Resources.deleteIcon1;
+ this.removeFirstRow.Image = global::DSPRE.Properties.Resources.deleteIcon;
this.removeFirstRow.Location = new System.Drawing.Point(324, 467);
this.removeFirstRow.Name = "removeFirstRow";
this.removeFirstRow.Padding = new System.Windows.Forms.Padding(10, 0, 10, 0);
diff --git a/DS_Map/Main Window.Designer.cs b/DS_Map/Main Window.Designer.cs
index e262b64..404f250 100644
--- a/DS_Map/Main Window.Designer.cs
+++ b/DS_Map/Main Window.Designer.cs
@@ -255,6 +255,7 @@
this.zBuildUpDown = new System.Windows.Forms.NumericUpDown();
this.buildingsListBox = new System.Windows.Forms.ListBox();
this.permissionsTabPage = new System.Windows.Forms.TabPage();
+ this.transparencyBar = new System.Windows.Forms.TrackBar();
this.scanUnusedCollisionTypesButton = new System.Windows.Forms.Button();
this.clearCurrentButton = new System.Windows.Forms.Button();
this.typeLabel = new System.Windows.Forms.Label();
@@ -788,6 +789,7 @@
this.openROMToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.openFolderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveROMToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.romToolboxToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.headerSearchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
@@ -808,6 +810,7 @@
this.texturizeNSBMDToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.untexturizeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.extractNSBTXFromNSBMDToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
+ this.addressHelperToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuViewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.essentialToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.simpleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
@@ -835,6 +838,7 @@
this.listBasedBatchRenameToolStripButton = new System.Windows.Forms.ToolStripButton();
this.contentBasedBatchRenameToolStripButton = new System.Windows.Forms.ToolStripButton();
this.separator_afterRenameUtils = new System.Windows.Forms.ToolStripSeparator();
+ this.weatherMapEditor = new System.Windows.Forms.ToolStripButton();
this.enumBasedListBuilderToolStripButton = new System.Windows.Forms.ToolStripButton();
this.folderBasedListBuilderToolStriButton = new System.Windows.Forms.ToolStripButton();
this.separator_afterListUtils = new System.Windows.Forms.ToolStripSeparator();
@@ -916,6 +920,7 @@
((System.ComponentModel.ISupportInitialize)(this.xBuildUpDown)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.zBuildUpDown)).BeginInit();
this.permissionsTabPage.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.transparencyBar)).BeginInit();
this.typeGroupBox.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.typePainterUpDown)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.typePainterPictureBox)).BeginInit();
@@ -1090,6 +1095,7 @@
this.menuStrip1.SuspendLayout();
this.statusStrip1.SuspendLayout();
this.mainToolStrip.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.texturePictureBox)).BeginInit();
this.SuspendLayout();
//
// mainTabControl
@@ -2714,7 +2720,7 @@
//
this.labelMatrices.AutoSize = true;
this.labelMatrices.ImeMode = System.Windows.Forms.ImeMode.NoControl;
- this.labelMatrices.Location = new System.Drawing.Point(9, 11);
+ this.labelMatrices.Location = new System.Drawing.Point(10, 11);
this.labelMatrices.Name = "labelMatrices";
this.labelMatrices.Size = new System.Drawing.Size(47, 13);
this.labelMatrices.TabIndex = 21;
@@ -3822,6 +3828,7 @@
//
// permissionsTabPage
//
+ this.permissionsTabPage.Controls.Add(this.transparencyBar);
this.permissionsTabPage.Controls.Add(this.scanUnusedCollisionTypesButton);
this.permissionsTabPage.Controls.Add(this.clearCurrentButton);
this.permissionsTabPage.Controls.Add(this.typeLabel);
@@ -3840,11 +3847,24 @@
this.permissionsTabPage.Text = "Move Permissions";
this.permissionsTabPage.UseVisualStyleBackColor = true;
//
+ // transparencyBar
+ //
+ this.transparencyBar.BackColor = System.Drawing.SystemColors.Menu;
+ this.transparencyBar.Location = new System.Drawing.Point(12, 391);
+ this.transparencyBar.Margin = new System.Windows.Forms.Padding(3, 3, 3, 0);
+ this.transparencyBar.Maximum = 255;
+ this.transparencyBar.Name = "transparencyBar";
+ this.transparencyBar.Size = new System.Drawing.Size(445, 45);
+ this.transparencyBar.TabIndex = 42;
+ this.transparencyBar.TickFrequency = 255;
+ this.transparencyBar.TickStyle = System.Windows.Forms.TickStyle.None;
+ this.transparencyBar.Scroll += new System.EventHandler(this.transparencyBar_Scroll);
+ //
// scanUnusedCollisionTypesButton
//
this.scanUnusedCollisionTypesButton.Image = global::DSPRE.Properties.Resources.SearchMiniIcon;
this.scanUnusedCollisionTypesButton.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
- this.scanUnusedCollisionTypesButton.Location = new System.Drawing.Point(345, 110);
+ this.scanUnusedCollisionTypesButton.Location = new System.Drawing.Point(345, 108);
this.scanUnusedCollisionTypesButton.Name = "scanUnusedCollisionTypesButton";
this.scanUnusedCollisionTypesButton.Size = new System.Drawing.Size(111, 27);
this.scanUnusedCollisionTypesButton.TabIndex = 33;
@@ -3891,9 +3911,9 @@
this.typeGroupBox.Controls.Add(this.collisionTypePainterComboBox);
this.typeGroupBox.Controls.Add(this.typePainterPictureBox);
this.typeGroupBox.Enabled = false;
- this.typeGroupBox.Location = new System.Drawing.Point(12, 301);
+ this.typeGroupBox.Location = new System.Drawing.Point(13, 272);
this.typeGroupBox.Name = "typeGroupBox";
- this.typeGroupBox.Size = new System.Drawing.Size(444, 134);
+ this.typeGroupBox.Size = new System.Drawing.Size(444, 113);
this.typeGroupBox.TabIndex = 25;
this.typeGroupBox.TabStop = false;
this.typeGroupBox.Text = "Type Painter";
@@ -3914,7 +3934,7 @@
// valueTypeRadioButton
//
this.valueTypeRadioButton.AutoSize = true;
- this.valueTypeRadioButton.Location = new System.Drawing.Point(135, 78);
+ this.valueTypeRadioButton.Location = new System.Drawing.Point(341, 19);
this.valueTypeRadioButton.Name = "valueTypeRadioButton";
this.valueTypeRadioButton.Size = new System.Drawing.Size(52, 17);
this.valueTypeRadioButton.TabIndex = 4;
@@ -3926,7 +3946,7 @@
//
this.typePainterUpDown.Enabled = false;
this.typePainterUpDown.Hexadecimal = true;
- this.typePainterUpDown.Location = new System.Drawing.Point(134, 101);
+ this.typePainterUpDown.Location = new System.Drawing.Point(341, 45);
this.typePainterUpDown.Maximum = new decimal(new int[] {
255,
0,
@@ -3945,7 +3965,7 @@
this.collisionTypePainterComboBox.Location = new System.Drawing.Point(135, 44);
this.collisionTypePainterComboBox.MaxDropDownItems = 10;
this.collisionTypePainterComboBox.Name = "collisionTypePainterComboBox";
- this.collisionTypePainterComboBox.Size = new System.Drawing.Size(283, 21);
+ this.collisionTypePainterComboBox.Size = new System.Drawing.Size(200, 21);
this.collisionTypePainterComboBox.TabIndex = 2;
this.collisionTypePainterComboBox.SelectedIndexChanged += new System.EventHandler(this.typePainterComboBox_SelectedIndexChanged);
//
@@ -3955,7 +3975,7 @@
this.typePainterPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.typePainterPictureBox.Location = new System.Drawing.Point(18, 31);
this.typePainterPictureBox.Name = "typePainterPictureBox";
- this.typePainterPictureBox.Size = new System.Drawing.Size(80, 80);
+ this.typePainterPictureBox.Size = new System.Drawing.Size(66, 64);
this.typePainterPictureBox.TabIndex = 1;
this.typePainterPictureBox.TabStop = false;
//
@@ -3965,7 +3985,7 @@
this.collisionGroupBox.Controls.Add(this.collisionPainterPictureBox);
this.collisionGroupBox.Location = new System.Drawing.Point(12, 167);
this.collisionGroupBox.Name = "collisionGroupBox";
- this.collisionGroupBox.Size = new System.Drawing.Size(444, 118);
+ this.collisionGroupBox.Size = new System.Drawing.Size(444, 99);
this.collisionGroupBox.TabIndex = 24;
this.collisionGroupBox.TabStop = false;
this.collisionGroupBox.Text = "Collision Painter";
@@ -3974,7 +3994,7 @@
//
this.collisionPainterComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.collisionPainterComboBox.FormattingEnabled = true;
- this.collisionPainterComboBox.Location = new System.Drawing.Point(134, 50);
+ this.collisionPainterComboBox.Location = new System.Drawing.Point(134, 23);
this.collisionPainterComboBox.Name = "collisionPainterComboBox";
this.collisionPainterComboBox.Size = new System.Drawing.Size(284, 21);
this.collisionPainterComboBox.TabIndex = 1;
@@ -3986,7 +4006,7 @@
this.collisionPainterPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.collisionPainterPictureBox.Location = new System.Drawing.Point(18, 23);
this.collisionPainterPictureBox.Name = "collisionPainterPictureBox";
- this.collisionPainterPictureBox.Size = new System.Drawing.Size(80, 80);
+ this.collisionPainterPictureBox.Size = new System.Drawing.Size(66, 64);
this.collisionPainterPictureBox.TabIndex = 0;
this.collisionPainterPictureBox.TabStop = false;
//
@@ -10193,7 +10213,8 @@
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.openROMToolStripMenuItem,
this.openFolderToolStripMenuItem,
- this.saveROMToolStripMenuItem});
+ this.saveROMToolStripMenuItem,
+ this.settingsToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
this.fileToolStripMenuItem.Text = "File";
@@ -10226,11 +10247,22 @@
this.saveROMToolStripMenuItem.Text = "Save ROM";
this.saveROMToolStripMenuItem.Click += new System.EventHandler(this.saveRom_Click);
//
+ // settingsToolStripMenuItem
+ //
+ this.settingsToolStripMenuItem.Image = global::DSPRE.Properties.Resources.wrenchIcon;
+ this.settingsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
+ this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
+ this.settingsToolStripMenuItem.RightToLeftAutoMirrorImage = true;
+ this.settingsToolStripMenuItem.Size = new System.Drawing.Size(155, 38);
+ this.settingsToolStripMenuItem.Text = "Settings";
+ this.settingsToolStripMenuItem.Click += new System.EventHandler(this.settingsToolStripMenuItem_Click);
+ //
// aboutToolStripMenuItem
//
this.aboutToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.romToolboxToolStripMenuItem,
this.headerSearchToolStripMenuItem,
+ this.addressHelperToolStripMenuItem,
this.scriptCommandsDatabaseToolStripMenuItem,
this.NarcUtilityToolStripMenuItem,
this.listBasedBatchRenameToolStripMenuItem,
@@ -10411,6 +10443,14 @@
this.extractNSBTXFromNSBMDToolStripMenuItem.Text = "Save textures from NSBMD";
this.extractNSBTXFromNSBMDToolStripMenuItem.Click += new System.EventHandler(this.nsbmdExportTexButton_Click);
//
+ // addressHelperToolStripMenuItem
+ //
+ this.addressHelperToolStripMenuItem.Enabled = false;
+ this.addressHelperToolStripMenuItem.Name = "addressHelperToolStripMenuItem";
+ this.addressHelperToolStripMenuItem.Size = new System.Drawing.Size(220, 22);
+ this.addressHelperToolStripMenuItem.Text = "Address Helper";
+ this.addressHelperToolStripMenuItem.Click += new System.EventHandler(this.addressHelperToolStripMenuItem_Click);
+ //
// menuViewToolStripMenuItem
//
this.menuViewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
@@ -10425,14 +10465,14 @@
// essentialToolStripMenuItem
//
this.essentialToolStripMenuItem.Name = "essentialToolStripMenuItem";
- this.essentialToolStripMenuItem.Size = new System.Drawing.Size(127, 22);
+ this.essentialToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.essentialToolStripMenuItem.Text = "Essential";
this.essentialToolStripMenuItem.MouseDown += new System.Windows.Forms.MouseEventHandler(this.simpleToolStripMenuItem_MouseDown);
//
// simpleToolStripMenuItem
//
this.simpleToolStripMenuItem.Name = "simpleToolStripMenuItem";
- this.simpleToolStripMenuItem.Size = new System.Drawing.Size(127, 22);
+ this.simpleToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.simpleToolStripMenuItem.Text = "Simple";
this.simpleToolStripMenuItem.MouseDown += new System.Windows.Forms.MouseEventHandler(this.simpleToolStripMenuItem_MouseDown);
//
@@ -10441,14 +10481,14 @@
this.advancedStripMenuItem.Checked = true;
this.advancedStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
this.advancedStripMenuItem.Name = "advancedStripMenuItem";
- this.advancedStripMenuItem.Size = new System.Drawing.Size(127, 22);
+ this.advancedStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.advancedStripMenuItem.Text = "Advanced";
this.advancedStripMenuItem.MouseDown += new System.Windows.Forms.MouseEventHandler(this.simpleToolStripMenuItem_MouseDown);
//
// fullViewToolStripMenuItem
//
this.fullViewToolStripMenuItem.Name = "fullViewToolStripMenuItem";
- this.fullViewToolStripMenuItem.Size = new System.Drawing.Size(127, 22);
+ this.fullViewToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.fullViewToolStripMenuItem.Text = "Complete";
this.fullViewToolStripMenuItem.MouseDown += new System.Windows.Forms.MouseEventHandler(this.simpleToolStripMenuItem_MouseDown);
//
@@ -10762,6 +10802,19 @@
this.separator_afterNsbmdUtils.Name = "separator_afterNsbmdUtils";
this.separator_afterNsbmdUtils.Size = new System.Drawing.Size(6, 44);
//
+ // weatherMapEditor
+ //
+ this.weatherMapEditor.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
+ this.weatherMapEditor.Image = global::DSPRE.Properties.Resources.weather_editor;
+ this.weatherMapEditor.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
+ this.weatherMapEditor.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.weatherMapEditor.Margin = new System.Windows.Forms.Padding(4, 6, 0, 2);
+ this.weatherMapEditor.Name = "weatherMapEditor";
+ this.weatherMapEditor.Size = new System.Drawing.Size(36, 36);
+ this.weatherMapEditor.Text = "Weather Map Editor";
+ this.weatherMapEditor.ToolTipText = "Weather Map Editor";
+ this.weatherMapEditor.Click += new System.EventHandler(this.weatherMapEditor_Click);
+ //
// buildingEditorButton
//
this.buildingEditorButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
@@ -12002,6 +12055,10 @@
private System.Windows.Forms.ToolStripMenuItem overlayEditorToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem spawnEditorToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem moveDataEditorToolStripMenuItem;
+ private System.Windows.Forms.ToolStripMenuItem settingsToolStripMenuItem;
+ private System.Windows.Forms.ToolStripButton weatherMapEditor;
+ private System.Windows.Forms.TrackBar transparencyBar;
+ private System.Windows.Forms.ToolStripMenuItem addressHelperToolStripMenuItem;
}
}
diff --git a/DS_Map/Main Window.cs b/DS_Map/Main Window.cs
index 5cdf5de..ba2227d 100644
--- a/DS_Map/Main Window.cs
+++ b/DS_Map/Main Window.cs
@@ -703,7 +703,8 @@ namespace DSPRE {
private void saveRom_Click(object sender, EventArgs e) {
SaveFileDialog saveRom = new SaveFileDialog {
- Filter = DSUtils.NDSRomFilter
+ Filter = DSUtils.NDSRomFilter,
+ InitialDirectory = Properties.Settings.Default.exportPath
};
if (saveRom.ShowDialog(this) != DialogResult.OK) {
return;
@@ -711,6 +712,7 @@ namespace DSPRE {
Helpers.statusLabelMessage("Repacking NARCS...");
Update();
+ var dateBegin = DateTime.Now;
// Repack NARCs
foreach (KeyValuePair kvp in RomInfo.gameDirs) {
@@ -772,6 +774,40 @@ namespace DSPRE {
Properties.Settings.Default.Save();
Helpers.statusLabelMessage();
+ var date = DateTime.Now;
+ var StringDate = formatTime(date.Hour) + ":" + formatTime(date.Minute) + ":" + formatTime(date.Second);
+ int timeSpent = CalculateTimeDifferenceInSeconds(dateBegin.Hour, dateBegin.Minute, dateBegin.Second, date.Hour, date.Minute, date.Second);
+
+ Helpers.statusLabelMessage("Ready - " + StringDate + " | Build time: " + timeSpent.ToString() + "s");
+ }
+
+ static int CalculateTimeDifferenceInSeconds(int startHour, int startMinute, int startSecond, int endHour, int endMinute, int endSecond)
+ {
+ // Convert start time and end time to seconds since midnight
+ int startTimeInSeconds = (startHour * 3600) + (startMinute * 60) + startSecond;
+ int endTimeInSeconds = (endHour * 3600) + (endMinute * 60) + endSecond;
+
+ // Calculate difference
+ int timeDifference = endTimeInSeconds - startTimeInSeconds;
+
+ // If time difference is negative (end time is past midnight), adjust
+ if (timeDifference < 0)
+ {
+ timeDifference += 24 * 3600; // Add 24 hours in seconds
+ }
+
+ return timeDifference;
+ }
+
+ private String formatTime(int time)
+ {
+ string stringTime = time.ToString();
+ if (time < 10)
+ {
+ stringTime = "0" + stringTime;
+ }
+
+ return stringTime;
}
private void unpackAllButton_Click(object sender, EventArgs e) {
Helpers.statusLabelMessage("Awaiting user response...");
@@ -3059,6 +3095,7 @@ namespace DSPRE {
/* Permission painters */
public Pen paintPen;
+ public int Transparency = 128;
public SolidBrush paintBrush;
public SolidBrush textBrush;
public byte paintByte;
@@ -4302,106 +4339,111 @@ namespace DSPRE {
typePainterUpDown_ValueChanged(null, null);
}
}
- private void PrepareCollisionPainterGraphics(byte collisionValue) {
- switch (collisionValue) {
+ private void PrepareCollisionPainterGraphics(byte collisionValue)
+ {
+ switch (collisionValue)
+ {
case 0x01: // Snow
- paintPen = new Pen(Color.FromArgb(128, Color.Lavender));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.Lavender));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.Lavender));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.Lavender));
break;
case 0x02: // Leaves
- paintPen = new Pen(Color.FromArgb(128, Color.ForestGreen));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.ForestGreen));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.ForestGreen));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.ForestGreen));
break;
case 0x04: // Grass
- paintPen = new Pen(Color.FromArgb(128, Color.LimeGreen));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.LimeGreen));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.LimeGreen));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.LimeGreen));
break;
case 0x06: // Stairs and ice
- paintPen = new Pen(Color.FromArgb(128, Color.PowderBlue));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.PowderBlue));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.PowderBlue));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.PowderBlue));
break;
case 0x07: // Metal
- paintPen = new Pen(Color.FromArgb(128, Color.Silver));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.Silver));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.Silver));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.Silver));
break;
case 0x0A: // Stone
- paintPen = new Pen(Color.FromArgb(128, Color.DimGray));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.DimGray));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.DimGray));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.DimGray));
break;
case 0x0D: // Wood
- paintPen = new Pen(Color.FromArgb(128, Color.SaddleBrown));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.SaddleBrown));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.SaddleBrown));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.SaddleBrown));
break;
case 0x80:
- paintPen = new Pen(Color.FromArgb(128, Color.Red));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.Red));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.Red));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.Red));
break;
default: // 0x00 - Walkeable
- paintPen = new Pen(Color.FromArgb(128, Color.White));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.White));
+ paintPen = new Pen(Color.FromArgb(32, Color.White));
+ paintBrush = new SolidBrush(Color.FromArgb(32, Color.White));
break;
}
}
- private void PrepareTypePainterGraphics(byte typeValue) {
- switch (typeValue) {
+
+ private void PrepareTypePainterGraphics(byte typeValue)
+ {
+ switch (typeValue)
+ {
case 0x0:
- paintPen = new Pen(Color.FromArgb(128, Color.White));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.White));
+ paintPen = new Pen(Color.FromArgb(32, Color.White));
+ paintBrush = new SolidBrush(Color.FromArgb(32, Color.White));
textBrush = new SolidBrush(Color.White);
textFont = new Font("Arial", 9.0f);
break;
case 0x2:
- paintPen = new Pen(Color.FromArgb(128, Color.LimeGreen));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.LimeGreen));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.LimeGreen));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.LimeGreen));
textBrush = new SolidBrush(Color.White);
textFont = new Font("Arial", 9.0f);
break;
case 0x3:
- paintPen = new Pen(Color.FromArgb(128, Color.Green));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.Green));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.Green));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.Green));
textBrush = new SolidBrush(Color.White);
textFont = new Font("Arial", 9.0f);
break;
case 0x8:
case 0xC:
- paintPen = new Pen(Color.FromArgb(128, Color.BurlyWood));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.BurlyWood));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.BurlyWood));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.BurlyWood));
textBrush = new SolidBrush(Color.White);
textFont = new Font("Arial", 8.65f);
break;
case 0x10:
- paintPen = new Pen(Color.FromArgb(128, Color.SkyBlue));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.SkyBlue));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.SkyBlue));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.SkyBlue));
textBrush = new SolidBrush(Color.White);
textFont = new Font("Arial", 9.0f);
break;
case 0x13:
- paintPen = new Pen(Color.FromArgb(128, Color.SteelBlue));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.SteelBlue));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.SteelBlue));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.SteelBlue));
textBrush = new SolidBrush(Color.White);
textFont = new Font("Arial", 9.0f);
break;
case 0x15:
- paintPen = new Pen(Color.FromArgb(128, Color.RoyalBlue));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.RoyalBlue));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.RoyalBlue));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.RoyalBlue));
textBrush = new SolidBrush(Color.White);
textFont = new Font("Arial", 9.0f);
break;
case 0x16:
- paintPen = new Pen(Color.FromArgb(128, Color.LightSlateGray));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.LightSlateGray));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.LightSlateGray));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.LightSlateGray));
textBrush = new SolidBrush(Color.White);
textFont = new Font("Arial", 9.0f);
break;
case 0x20:
- paintPen = new Pen(Color.FromArgb(128, Color.Cyan));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.Cyan));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.Cyan));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.Cyan));
textBrush = new SolidBrush(Color.Black);
textFont = new Font("Arial", 9.0f);
break;
case 0x21:
- paintPen = new Pen(Color.FromArgb(128, Color.PeachPuff));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.PeachPuff));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.PeachPuff));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.PeachPuff));
textBrush = new SolidBrush(Color.Black);
textFont = new Font("Arial", 9.0f);
break;
@@ -4409,8 +4451,8 @@ namespace DSPRE {
case 0x31:
case 0x32:
case 0x33:
- paintPen = new Pen(Color.FromArgb(128, Color.Red));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.Red));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.Red));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.Red));
textBrush = new SolidBrush(Color.White);
textFont = new Font("Arial", 9.0f);
break;
@@ -4426,8 +4468,8 @@ namespace DSPRE {
case 0x39:
case 0x3A:
case 0x3B:
- paintPen = new Pen(Color.FromArgb(128, Color.Maroon));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.Maroon));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.Maroon));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.Maroon));
textBrush = new SolidBrush(Color.White);
textFont = new Font("Arial", 8.65f);
break;
@@ -4435,21 +4477,21 @@ namespace DSPRE {
case 0x41:
case 0x42:
case 0x43:
- paintPen = new Pen(Color.FromArgb(128, Color.Gold));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.Gold));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.Gold));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.Gold));
textBrush = new SolidBrush(Color.Black);
textFont = new Font("Arial", 9.0f);
break;
case 0x4B:
case 0x4C:
- paintPen = new Pen(Color.FromArgb(128, Color.Sienna));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.Sienna));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.Sienna));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.Sienna));
textBrush = new SolidBrush(Color.White);
textFont = new Font("Arial", 9.0f);
break;
case 0x5E:
- paintPen = new Pen(Color.FromArgb(128, Color.DarkOrchid));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.DarkOrchid));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.DarkOrchid));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.DarkOrchid));
textBrush = new SolidBrush(Color.White);
textFont = new Font("Arial", 8.65f);
break;
@@ -4459,8 +4501,8 @@ namespace DSPRE {
case 0x64:
case 0x65:
case 0x69:
- paintPen = new Pen(Color.FromArgb(128, Color.DarkOrchid));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.DarkOrchid));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.DarkOrchid));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.DarkOrchid));
textBrush = new SolidBrush(Color.White);
textFont = new Font("Arial", 8.65f);
break;
@@ -4468,34 +4510,34 @@ namespace DSPRE {
case 0x6D:
case 0x6E:
case 0x6F:
- paintPen = new Pen(Color.FromArgb(128, Color.DarkOrchid));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.DarkOrchid));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.DarkOrchid));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.DarkOrchid));
textBrush = new SolidBrush(Color.White);
textFont = new Font("Arial", 8.65f);
break;
case 0xA1:
case 0xA2:
case 0xA3:
- paintPen = new Pen(Color.FromArgb(128, Color.Honeydew));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.Honeydew));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.Honeydew));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.Honeydew));
textBrush = new SolidBrush(Color.Black);
textFont = new Font("Arial", 8.65f);
break;
case 0xA4:
- paintPen = new Pen(Color.FromArgb(128, Color.Peru));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.Peru));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.Peru));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.Peru));
textBrush = new SolidBrush(Color.White);
textFont = new Font("Arial", 8.65f);
break;
case 0xA6:
- paintPen = new Pen(Color.FromArgb(128, Color.SeaGreen));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.SeaGreen));
+ paintPen = new Pen(Color.FromArgb(Transparency, Color.SeaGreen));
+ paintBrush = new SolidBrush(Color.FromArgb(Transparency, Color.SeaGreen));
textBrush = new SolidBrush(Color.White);
textFont = new Font("Arial", 8.65f);
break;
default:
- paintPen = new Pen(Color.FromArgb(128, Color.White));
- paintBrush = new SolidBrush(Color.FromArgb(128, Color.White));
+ paintPen = new Pen(Color.FromArgb(32, Color.White));
+ paintBrush = new SolidBrush(Color.FromArgb(32, Color.White));
textBrush = new SolidBrush(Color.Black);
textFont = new Font("Arial", 8.65f);
break;
@@ -4704,7 +4746,8 @@ namespace DSPRE {
private void importMapButton_Click(object sender, EventArgs e) {
OpenFileDialog im = new OpenFileDialog {
- Filter = MapFile.NSBMDFilter
+ Filter = "NSBTX File (*.nsbtx)|*.nsbtx",
+ InitialDirectory = Properties.Settings.Default.mapImportStarterPoint
};
if (im.ShowDialog(this) != DialogResult.OK) {
return;
@@ -9914,5 +9957,42 @@ namespace DSPRE {
Helpers.statusLabelMessage();
Update();
}
+
+ private void settingsToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ using (SettingsWindow editor = new SettingsWindow())
+ editor.ShowDialog();
+ }
+
+ private void weatherMapEditor_Click(object sender, EventArgs e)
+ {
+ WeatherEditor form = new WeatherEditor();
+ form.Show();
+ }
+
+ private void MainProgram_Load(object sender, EventArgs e)
+ {
+ transparencyBar.Value = Transparency;
+ }
+
+ private void transparencyBar_Scroll(object sender, EventArgs e)
+ {
+ Transparency = transparencyBar.Value;
+ if (selectCollisionPanel.BackColor == Color.MidnightBlue)
+ {
+ DrawCollisionGrid();
+ }
+ else
+ {
+ DrawTypeGrid();
+ }
+
+ }
+
+ private void addressHelperToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ AddressHelper form = new AddressHelper();
+ form.Show();
+ }
}
}
diff --git a/DS_Map/Properties/AssemblyInfo.cs b/DS_Map/Properties/AssemblyInfo.cs
index 19f3f62..96de195 100644
--- a/DS_Map/Properties/AssemblyInfo.cs
+++ b/DS_Map/Properties/AssemblyInfo.cs
@@ -4,11 +4,11 @@ using System.Runtime.InteropServices;
// Le informazioni generali relative a un assembly sono controllate dal seguente
// set di attributi. Modificare i valori di questi attributi per modificare le informazioni
// associate a un assembly.
-[assembly: AssemblyTitle("DSPRE Reloaded 1.12.5")]
+[assembly: AssemblyTitle("DSPRE Reloaded 1.13")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
-[assembly: AssemblyProduct("DSPRE Reloaded 1.12.5")]
+[assembly: AssemblyProduct("DSPRE Reloaded 1.13")]
[assembly: AssemblyCopyright("Copyright © 2023")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
// È possibile specificare tutti i valori oppure impostare valori predefiniti per i numeri relativi alla revisione e alla build
// usando l'asterisco '*' come illustrato di seguito:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.12.5")]
-[assembly: AssemblyFileVersion("1.12.5")]
+[assembly: AssemblyVersion("1.13")]
+[assembly: AssemblyFileVersion("1.13")]
diff --git a/DS_Map/Properties/Resources.Designer.cs b/DS_Map/Properties/Resources.Designer.cs
index 364f861..f8d4b50 100644
--- a/DS_Map/Properties/Resources.Designer.cs
+++ b/DS_Map/Properties/Resources.Designer.cs
@@ -1,10 +1,10 @@
//------------------------------------------------------------------------------
//
-// Il codice è stato generato da uno strumento.
-// Versione runtime:4.0.30319.42000
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
//
-// Le modifiche apportate a questo file possono provocare un comportamento non corretto e andranno perse se
-// il codice viene rigenerato.
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
//
//------------------------------------------------------------------------------
@@ -13,12 +13,12 @@ namespace DSPRE.Properties {
///
- /// Classe di risorse fortemente tipizzata per la ricerca di stringhe localizzate e così via.
+ /// A strongly-typed resource class, for looking up localized strings, etc.
///
- // Questa classe è stata generata automaticamente dalla classe StronglyTypedResourceBuilder.
- // tramite uno strumento quale ResGen o Visual Studio.
- // Per aggiungere o rimuovere un membro, modificare il file con estensione ResX ed eseguire nuovamente ResGen
- // con l'opzione /str oppure ricompilare il progetto VS.
+ // 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", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
@@ -33,7 +33,7 @@ namespace DSPRE.Properties {
}
///
- /// Restituisce l'istanza di ResourceManager nella cache utilizzata da questa classe.
+ /// 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 {
@@ -47,8 +47,8 @@ namespace DSPRE.Properties {
}
///
- /// Esegue l'override della proprietà CurrentUICulture del thread corrente per tutte le
- /// ricerche di risorse eseguite utilizzando questa classe di risorse fortemente tipizzata.
+ /// 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 {
@@ -61,7 +61,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap addIcon {
get {
@@ -71,7 +71,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap addTextureToNSBMD {
get {
@@ -81,7 +81,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap alphabgCheckerboard {
get {
@@ -91,7 +91,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Icon simile a (Icona).
+ /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon).
///
internal static System.Drawing.Icon appIcon {
get {
@@ -101,7 +101,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap areaicon00 {
get {
@@ -111,7 +111,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap areaicon01 {
get {
@@ -121,7 +121,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap areaicon02 {
get {
@@ -131,7 +131,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap areaicon03 {
get {
@@ -141,7 +141,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap areaicon04 {
get {
@@ -151,7 +151,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap areaicon05 {
get {
@@ -161,7 +161,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap areaicon06 {
get {
@@ -171,7 +171,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap areaicon07 {
get {
@@ -181,7 +181,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap areaicon08 {
get {
@@ -191,7 +191,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap areaicon09 {
get {
@@ -201,7 +201,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap arrowdown {
get {
@@ -211,7 +211,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap arrowleft {
get {
@@ -221,7 +221,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap arrowright {
get {
@@ -231,7 +231,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap arrowup {
get {
@@ -241,7 +241,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap blue_sign {
get {
@@ -251,7 +251,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Byte[].
+ /// Looks up a localized resource of type System.Byte[].
///
internal static byte[] blz {
get {
@@ -261,7 +261,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap brown_sign {
get {
@@ -271,7 +271,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap buildingEditorButton {
get {
@@ -281,7 +281,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap cameraIcon {
get {
@@ -291,7 +291,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap checkmark {
get {
@@ -301,7 +301,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap compressArrow {
get {
@@ -311,7 +311,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap contentbasedRenameIcon {
get {
@@ -321,7 +321,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap copyIcon {
get {
@@ -331,7 +331,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap copyIcon_small {
get {
@@ -341,7 +341,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap Cross {
get {
@@ -351,7 +351,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dawn_platinum {
get {
@@ -361,7 +361,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dawnSpawn {
get {
@@ -371,7 +371,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap deleteIcon {
get {
@@ -381,7 +381,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap destroyLevelScript {
get {
@@ -391,7 +391,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpareaicon {
get {
@@ -401,7 +401,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpblizzard {
get {
@@ -411,7 +411,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpcamera0 {
get {
@@ -421,7 +421,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpcamera1 {
get {
@@ -431,7 +431,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpcamera10 {
get {
@@ -441,7 +441,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpcamera11 {
get {
@@ -451,7 +451,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpcamera12 {
get {
@@ -461,7 +461,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpcamera13 {
get {
@@ -471,7 +471,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpcamera14 {
get {
@@ -481,7 +481,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpcamera15 {
get {
@@ -491,7 +491,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpcamera2 {
get {
@@ -501,7 +501,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpcamera3 {
get {
@@ -511,7 +511,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpcamera4 {
get {
@@ -521,7 +521,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpcamera5 {
get {
@@ -531,7 +531,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpcamera6 {
get {
@@ -541,7 +541,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpcamera7 {
get {
@@ -551,7 +551,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpcamera8 {
get {
@@ -561,7 +561,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpcamera9 {
get {
@@ -571,7 +571,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpcloudy {
get {
@@ -581,7 +581,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpdark {
get {
@@ -591,7 +591,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpdiamondsnow {
get {
@@ -601,7 +601,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpfog {
get {
@@ -611,7 +611,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dphail {
get {
@@ -621,7 +621,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpheavyrain {
get {
@@ -631,7 +631,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dplightning {
get {
@@ -641,7 +641,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dplightsandstorm {
get {
@@ -651,7 +651,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpnormal {
get {
@@ -661,7 +661,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dppt_suitcase {
get {
@@ -671,7 +671,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dprain {
get {
@@ -681,7 +681,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dprocksascending {
get {
@@ -691,7 +691,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpsandfall {
get {
@@ -701,7 +701,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpsandstorm {
get {
@@ -711,7 +711,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpsnowslow {
get {
@@ -721,7 +721,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpthunderstorm {
get {
@@ -731,7 +731,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap dpthunderstorm1 {
get {
@@ -741,7 +741,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap enumToListIcon {
get {
@@ -751,7 +751,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap expandArrow {
get {
@@ -761,7 +761,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap exploreKit {
get {
@@ -771,7 +771,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap exportArrow {
get {
@@ -781,7 +781,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap folderToListIcon {
get {
@@ -791,7 +791,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap folderToNarcIcon {
get {
@@ -801,7 +801,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap goToOW {
get {
@@ -811,7 +811,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap goToSpawnable {
get {
@@ -821,7 +821,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap goToTrigger {
get {
@@ -831,7 +831,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap goToWarp {
get {
@@ -841,7 +841,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap gray_sign {
get {
@@ -851,7 +851,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgssArcade {
get {
@@ -861,7 +861,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsscamera0 {
get {
@@ -871,7 +871,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsscamera1 {
get {
@@ -881,7 +881,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsscamera10 {
get {
@@ -891,7 +891,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsscamera11 {
get {
@@ -901,7 +901,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsscamera12 {
get {
@@ -911,7 +911,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsscamera13 {
get {
@@ -921,7 +921,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsscamera14 {
get {
@@ -931,7 +931,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsscamera15 {
get {
@@ -941,7 +941,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsscamera16 {
get {
@@ -951,7 +951,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsscamera2 {
get {
@@ -961,7 +961,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsscamera3 {
get {
@@ -971,7 +971,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsscamera4 {
get {
@@ -981,7 +981,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsscamera5 {
get {
@@ -991,7 +991,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsscamera6 {
get {
@@ -1001,7 +1001,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsscamera7 {
get {
@@ -1011,7 +1011,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsscamera8 {
get {
@@ -1021,7 +1021,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsscamera9 {
get {
@@ -1031,7 +1031,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsscave {
get {
@@ -1041,7 +1041,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgssdark {
get {
@@ -1051,7 +1051,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgssdark2 {
get {
@@ -1061,7 +1061,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgssdiamond {
get {
@@ -1071,7 +1071,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgssfield {
get {
@@ -1081,7 +1081,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgssfog {
get {
@@ -1091,7 +1091,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgssforest {
get {
@@ -1101,7 +1101,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgssgray {
get {
@@ -1111,7 +1111,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsslake {
get {
@@ -1121,7 +1121,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgssnormal {
get {
@@ -1131,7 +1131,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgssrain {
get {
@@ -1141,7 +1141,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgssrain1 {
get {
@@ -1151,7 +1151,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsssnow {
get {
@@ -1161,7 +1161,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsstown {
get {
@@ -1171,7 +1171,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsswall {
get {
@@ -1181,7 +1181,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsswater {
get {
@@ -1191,7 +1191,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap hgsswood {
get {
@@ -1201,7 +1201,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap IconItem {
get {
@@ -1211,7 +1211,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap IconPokeball {
get {
@@ -1221,7 +1221,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap IconPokeballNot {
get {
@@ -1231,7 +1231,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap importArrow {
get {
@@ -1241,7 +1241,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap LeftClick {
get {
@@ -1251,7 +1251,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap lens {
get {
@@ -1261,7 +1261,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap listbasedRenameIcon {
get {
@@ -1271,7 +1271,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap loadColorTable {
get {
@@ -1281,7 +1281,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap map_editor {
get {
@@ -1291,7 +1291,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap muteIcon {
get {
@@ -1301,7 +1301,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap narcToFolderIcon {
get {
@@ -1311,7 +1311,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Byte[].
+ /// Looks up a localized resource of type System.Byte[].
///
internal static byte[] ndstool {
get {
@@ -1321,7 +1321,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap open_file {
get {
@@ -1331,7 +1331,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap open_rom {
get {
@@ -1341,7 +1341,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap overworld {
get {
@@ -1351,7 +1351,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap overworldUnreadable {
get {
@@ -1361,7 +1361,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap pasteIcon {
get {
@@ -1371,7 +1371,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptblizzard {
get {
@@ -1381,7 +1381,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptblueish {
get {
@@ -1391,7 +1391,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptcamera0 {
get {
@@ -1401,7 +1401,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptcamera1 {
get {
@@ -1411,7 +1411,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptcamera10 {
get {
@@ -1421,7 +1421,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptcamera11 {
get {
@@ -1431,7 +1431,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptcamera12 {
get {
@@ -1441,7 +1441,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptcamera13 {
get {
@@ -1451,7 +1451,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptcamera14 {
get {
@@ -1461,7 +1461,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptcamera15 {
get {
@@ -1471,7 +1471,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptcamera2 {
get {
@@ -1481,7 +1481,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptcamera3 {
get {
@@ -1491,7 +1491,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptcamera4 {
get {
@@ -1501,7 +1501,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptcamera5 {
get {
@@ -1511,7 +1511,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptcamera6 {
get {
@@ -1521,7 +1521,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptcamera7 {
get {
@@ -1531,7 +1531,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptcamera8 {
get {
@@ -1541,7 +1541,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptcamera9 {
get {
@@ -1551,7 +1551,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptcloudy {
get {
@@ -1561,7 +1561,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptdark {
get {
@@ -1571,7 +1571,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptdarkfog {
get {
@@ -1581,7 +1581,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptdiamondsnow {
get {
@@ -1591,7 +1591,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptdim {
get {
@@ -1601,7 +1601,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptfog {
get {
@@ -1611,7 +1611,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptforestweather {
get {
@@ -1621,7 +1621,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptgreenish {
get {
@@ -1631,7 +1631,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap pthail {
get {
@@ -1641,7 +1641,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptheavyfog {
get {
@@ -1651,7 +1651,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptheavyrain {
get {
@@ -1661,7 +1661,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptlightfog {
get {
@@ -1671,7 +1671,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptlightning {
get {
@@ -1681,7 +1681,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptlightsandstorm {
get {
@@ -1691,7 +1691,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptnormal {
get {
@@ -1701,7 +1701,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptrain {
get {
@@ -1711,7 +1711,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptredish {
get {
@@ -1721,7 +1721,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptrocksascending {
get {
@@ -1731,7 +1731,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptsandfall {
get {
@@ -1741,7 +1741,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptsandstorm {
get {
@@ -1751,7 +1751,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptsnowslow {
get {
@@ -1761,7 +1761,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptspotlight {
get {
@@ -1771,7 +1771,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap ptthunderstorm {
get {
@@ -1781,7 +1781,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap questionMark {
get {
@@ -1791,7 +1791,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap red_sign {
get {
@@ -1801,7 +1801,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap removeTextureNSBMD {
get {
@@ -1811,7 +1811,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap RenameIcon {
get {
@@ -1821,7 +1821,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap resetColorTable {
get {
@@ -1831,7 +1831,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap resetIcon {
get {
@@ -1841,7 +1841,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap resetListIcon {
get {
@@ -1851,7 +1851,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap RightClick {
get {
@@ -1861,7 +1861,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap route_sign {
get {
@@ -1871,7 +1871,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap save_rom {
get {
@@ -1881,7 +1881,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap saveButton {
get {
@@ -1891,7 +1891,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap saveTextureFromNSBMD {
get {
@@ -1901,7 +1901,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap scriptDBIcon {
get {
@@ -1911,7 +1911,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap scriptDBIconDP {
get {
@@ -1921,7 +1921,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap scriptDBIconHGSS {
get {
@@ -1931,7 +1931,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap scriptDBIconPt {
get {
@@ -1941,7 +1941,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap SearchMiniIcon {
get {
@@ -1951,7 +1951,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap selectBldWithMouse {
get {
@@ -1961,7 +1961,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap sign {
get {
@@ -1971,7 +1971,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap sortAscending {
get {
@@ -1981,7 +1981,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap sortDescending {
get {
@@ -1991,7 +1991,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap spawnCoordsMatrixeditorIcon {
get {
@@ -2001,7 +2001,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap SurfIcon {
get {
@@ -2011,7 +2011,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap trainer_editor {
get {
@@ -2021,7 +2021,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap trigger {
get {
@@ -2031,7 +2031,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap unpackAllIcon {
get {
@@ -2041,7 +2041,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap unpackBuildingNarcsIcon {
get {
@@ -2051,7 +2051,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap warp {
get {
@@ -2061,7 +2061,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap warpCollision {
get {
@@ -2071,7 +2071,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap warpGo {
get {
@@ -2081,7 +2081,17 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap weather_editor {
+ get {
+ object obj = ResourceManager.GetObject("weather_editor", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap WheelClick {
get {
@@ -2091,7 +2101,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap wideLensImage {
get {
@@ -2101,7 +2111,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap wideLensImageTransp {
get {
@@ -2111,7 +2121,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap wildEditorButton {
get {
@@ -2121,7 +2131,7 @@ namespace DSPRE.Properties {
}
///
- /// Cerca una risorsa localizzata di tipo System.Drawing.Bitmap.
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap wrenchIcon {
get {
diff --git a/DS_Map/Properties/Resources.resx b/DS_Map/Properties/Resources.resx
index c34ae3e..74f63b2 100644
--- a/DS_Map/Properties/Resources.resx
+++ b/DS_Map/Properties/Resources.resx
@@ -739,4 +739,7 @@
..\Resources\RenameIcon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\Graphics\Program Icons\weather_editor.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
\ No newline at end of file
diff --git a/DS_Map/Resources/weather_editor.bmp b/DS_Map/Resources/weather_editor.bmp
new file mode 100644
index 0000000..55516c7
Binary files /dev/null and b/DS_Map/Resources/weather_editor.bmp differ