From 00cb80236381f66ff0e40d55f55a88ac231de0c8 Mon Sep 17 00:00:00 2001 From: "W2.Wizard" Date: Wed, 14 Apr 2021 11:34:43 +0200 Subject: [PATCH] Add missing doc --- .../Content/Items/SettingsItem/AndroidPlatformSettingsItem.cs | 2 +- Source/Editor/Content/Items/SettingsItem/AudioSettingsItem.cs | 2 +- Source/Editor/Content/Items/SettingsItem/BuildSettingsItem.cs | 2 +- Source/Editor/Content/Items/SettingsItem/GameSettingsItem.cs | 2 +- .../Editor/Content/Items/SettingsItem/GraphicsSettingsItem.cs | 2 +- Source/Editor/Content/Items/SettingsItem/InputSettingsItem.cs | 2 +- .../Content/Items/SettingsItem/LayersAndTagsSettingsItem.cs | 2 +- .../Content/Items/SettingsItem/LinuxPlatformSettingsItem.cs | 2 +- .../Editor/Content/Items/SettingsItem/NavigationSettingsItem.cs | 2 +- Source/Editor/Content/Items/SettingsItem/PhysicsSettingsItem.cs | 2 +- Source/Editor/Content/Items/SettingsItem/TimeSettingsItem.cs | 2 +- .../Content/Items/SettingsItem/UWPPlatformSettingsItem.cs | 2 +- .../Content/Items/SettingsItem/WindowsPlatformSettingsItem.cs | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Source/Editor/Content/Items/SettingsItem/AndroidPlatformSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/AndroidPlatformSettingsItem.cs index 4b161bbef..98ecb97fe 100644 --- a/Source/Editor/Content/Items/SettingsItem/AndroidPlatformSettingsItem.cs +++ b/Source/Editor/Content/Items/SettingsItem/AndroidPlatformSettingsItem.cs @@ -16,7 +16,7 @@ namespace FlaxEditor.Content /// /// The asset path. /// The asset identifier. - /// + /// The Name of the resource type. public AndroidPlatformSettingsItem(string path, Guid id, string typeName) : base(path, id, typeName) { diff --git a/Source/Editor/Content/Items/SettingsItem/AudioSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/AudioSettingsItem.cs index 69a931126..0a4b1818e 100644 --- a/Source/Editor/Content/Items/SettingsItem/AudioSettingsItem.cs +++ b/Source/Editor/Content/Items/SettingsItem/AudioSettingsItem.cs @@ -16,7 +16,7 @@ namespace FlaxEditor.Content /// /// The asset path. /// The asset identifier. - /// + /// The Name of the resource type. public AudioSettingsItem(string path, Guid id, string typeName) : base(path, id, typeName) { diff --git a/Source/Editor/Content/Items/SettingsItem/BuildSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/BuildSettingsItem.cs index 6f471d912..1cc976560 100644 --- a/Source/Editor/Content/Items/SettingsItem/BuildSettingsItem.cs +++ b/Source/Editor/Content/Items/SettingsItem/BuildSettingsItem.cs @@ -16,7 +16,7 @@ namespace FlaxEditor.Content /// /// The asset path. /// The asset identifier. - /// + /// The Name of the resource type. public BuildSettingsItem(string path, Guid id, string typeName) : base(path, id, typeName) { diff --git a/Source/Editor/Content/Items/SettingsItem/GameSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/GameSettingsItem.cs index 9515bb987..c0282d171 100644 --- a/Source/Editor/Content/Items/SettingsItem/GameSettingsItem.cs +++ b/Source/Editor/Content/Items/SettingsItem/GameSettingsItem.cs @@ -16,7 +16,7 @@ namespace FlaxEditor.Content /// /// The asset path. /// The asset identifier. - /// + /// The Name of the resource type. public GameSettingsItem(string path, Guid id, string typeName) : base(path, id, typeName) { diff --git a/Source/Editor/Content/Items/SettingsItem/GraphicsSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/GraphicsSettingsItem.cs index 4d08f6f9c..82d1bba96 100644 --- a/Source/Editor/Content/Items/SettingsItem/GraphicsSettingsItem.cs +++ b/Source/Editor/Content/Items/SettingsItem/GraphicsSettingsItem.cs @@ -16,7 +16,7 @@ namespace FlaxEditor.Content /// /// The asset path. /// The asset identifier. - /// + /// The Name of the resource type. public GraphicsSettingsItem(string path, Guid id, string typeName) : base(path, id, typeName) { diff --git a/Source/Editor/Content/Items/SettingsItem/InputSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/InputSettingsItem.cs index 3b532799e..f759e5c6a 100644 --- a/Source/Editor/Content/Items/SettingsItem/InputSettingsItem.cs +++ b/Source/Editor/Content/Items/SettingsItem/InputSettingsItem.cs @@ -16,7 +16,7 @@ namespace FlaxEditor.Content /// /// The asset path. /// The asset identifier. - /// + /// The Name of the resource type. public InputSettingsItem(string path, Guid id, string typeName) : base(path, id, typeName) { diff --git a/Source/Editor/Content/Items/SettingsItem/LayersAndTagsSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/LayersAndTagsSettingsItem.cs index 75485a279..29caa028d 100644 --- a/Source/Editor/Content/Items/SettingsItem/LayersAndTagsSettingsItem.cs +++ b/Source/Editor/Content/Items/SettingsItem/LayersAndTagsSettingsItem.cs @@ -16,7 +16,7 @@ namespace FlaxEditor.Content /// /// The asset path. /// The asset identifier. - /// + /// The Name of the resource type. public LayersAndTagsSettingsItem(string path, Guid id, string typeName) : base(path, id, typeName) { diff --git a/Source/Editor/Content/Items/SettingsItem/LinuxPlatformSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/LinuxPlatformSettingsItem.cs index 4e43326f0..c6e78bf66 100644 --- a/Source/Editor/Content/Items/SettingsItem/LinuxPlatformSettingsItem.cs +++ b/Source/Editor/Content/Items/SettingsItem/LinuxPlatformSettingsItem.cs @@ -16,7 +16,7 @@ namespace FlaxEditor.Content /// /// The asset path. /// The asset identifier. - /// Name of the resource type. + /// The Name of the resource type. public LinuxPlatformSettingsItem(string path, Guid id, string typeName) : base(path, id, typeName) { diff --git a/Source/Editor/Content/Items/SettingsItem/NavigationSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/NavigationSettingsItem.cs index a2e9c58e4..22d43b94b 100644 --- a/Source/Editor/Content/Items/SettingsItem/NavigationSettingsItem.cs +++ b/Source/Editor/Content/Items/SettingsItem/NavigationSettingsItem.cs @@ -16,7 +16,7 @@ namespace FlaxEditor.Content /// /// The asset path. /// The asset identifier. - /// + /// The Name of the resource type. public NavigationSettingsItem(string path, Guid id, string typeName) : base(path, id, typeName) { diff --git a/Source/Editor/Content/Items/SettingsItem/PhysicsSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/PhysicsSettingsItem.cs index 9613f3b72..78fdd9e92 100644 --- a/Source/Editor/Content/Items/SettingsItem/PhysicsSettingsItem.cs +++ b/Source/Editor/Content/Items/SettingsItem/PhysicsSettingsItem.cs @@ -16,7 +16,7 @@ namespace FlaxEditor.Content /// /// The asset path. /// The asset identifier. - /// + /// The Name of the resource type. public PhysicsSettingsItem(string path, Guid id, string typeName) : base(path, id, typeName) { diff --git a/Source/Editor/Content/Items/SettingsItem/TimeSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/TimeSettingsItem.cs index 1cc798695..1f54f53f0 100644 --- a/Source/Editor/Content/Items/SettingsItem/TimeSettingsItem.cs +++ b/Source/Editor/Content/Items/SettingsItem/TimeSettingsItem.cs @@ -16,7 +16,7 @@ namespace FlaxEditor.Content /// /// The asset path. /// The asset identifier. - /// + /// The Name of the resource type. public TimeSettingsItem(string path, Guid id, string typeName) : base(path, id, typeName) { diff --git a/Source/Editor/Content/Items/SettingsItem/UWPPlatformSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/UWPPlatformSettingsItem.cs index 8e11af39f..d83262340 100644 --- a/Source/Editor/Content/Items/SettingsItem/UWPPlatformSettingsItem.cs +++ b/Source/Editor/Content/Items/SettingsItem/UWPPlatformSettingsItem.cs @@ -16,7 +16,7 @@ namespace FlaxEditor.Content /// /// The asset path. /// The asset identifier. - /// Name of the resource type. + /// The Name of the resource type. public UWPPlatformSettingsItem(string path, Guid id, string typeName) : base(path, id, typeName) { diff --git a/Source/Editor/Content/Items/SettingsItem/WindowsPlatformSettingsItem.cs b/Source/Editor/Content/Items/SettingsItem/WindowsPlatformSettingsItem.cs index 5fc52815d..caf4b3012 100644 --- a/Source/Editor/Content/Items/SettingsItem/WindowsPlatformSettingsItem.cs +++ b/Source/Editor/Content/Items/SettingsItem/WindowsPlatformSettingsItem.cs @@ -16,7 +16,7 @@ namespace FlaxEditor.Content /// /// The asset path. /// The asset identifier. - /// Name of the resource type. + /// The Name of the resource type. public WindowsPlatformSettingsItem(string path, Guid id, string typeName) : base(path, id, typeName) {