diff --git a/PCK-Studio/MainForm.cs b/PCK-Studio/MainForm.cs
index ff68d980..240f95ef 100644
--- a/PCK-Studio/MainForm.cs
+++ b/PCK-Studio/MainForm.cs
@@ -50,6 +50,7 @@ namespace PckStudio
imageList.Images.Add(Resources.SKIN_ICON); // Icon for Skin files (*.png)
imageList.Images.Add(Resources.CAPE_ICON); // Icon for Cape files (*.png)
imageList.Images.Add(Resources.TEXTURE_ICON); // Icon for Texture files (*.png;*.tga)
+ imageList.Images.Add(Resources.BEHAVIOURS_ICON); // Icon for Behaviour files (behaviours.bin)
pckOpen.AllowDrop = true;
tabControl.SelectTab(0);
labelVersion.Text = "PCK Studio: " + Application.ProductVersion;
@@ -2830,6 +2831,10 @@ namespace PckStudio
node.ImageIndex = 14;
node.SelectedImageIndex = 14;
break;
+ case PCKFile.FileData.FileType.BehavioursFile:
+ node.ImageIndex = 15;
+ node.SelectedImageIndex = 15;
+ break;
default: // unknown file format
node.ImageIndex = 5;
node.SelectedImageIndex = 5;
diff --git a/PCK-Studio/PckStudio.csproj b/PCK-Studio/PckStudio.csproj
index c71fc2ad..fb5fdcd1 100644
--- a/PCK-Studio/PckStudio.csproj
+++ b/PCK-Studio/PckStudio.csproj
@@ -662,6 +662,7 @@
+
diff --git a/PCK-Studio/Properties/Resources.Designer.cs b/PCK-Studio/Properties/Resources.Designer.cs
index ccf6158d..5b171c7d 100644
--- a/PCK-Studio/Properties/Resources.Designer.cs
+++ b/PCK-Studio/Properties/Resources.Designer.cs
@@ -80,6 +80,16 @@ namespace PckStudio.Properties {
}
}
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ public static System.Drawing.Bitmap BEHAVIOURS_ICON {
+ get {
+ object obj = ResourceManager.GetObject("BEHAVIOURS_ICON", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
diff --git a/PCK-Studio/Properties/Resources.resx b/PCK-Studio/Properties/Resources.resx
index 541aac8b..8d86b2cc 100644
--- a/PCK-Studio/Properties/Resources.resx
+++ b/PCK-Studio/Properties/Resources.resx
@@ -277,4 +277,7 @@
..\Resources\fileTemplates\colours.col;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ ..\Resources\iconImageList\BEHAVIOURS ICON.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
\ No newline at end of file
diff --git a/PCK-Studio/Resources/iconImageList/BEHAVIOURS ICON.png b/PCK-Studio/Resources/iconImageList/BEHAVIOURS ICON.png
new file mode 100644
index 00000000..7264126b
Binary files /dev/null and b/PCK-Studio/Resources/iconImageList/BEHAVIOURS ICON.png differ