/// <summary>
		/// Constructor
		/// </summary>
		/// <param name="InName">Name of the module</param>
		/// <param name="InType">Type of target that can host this module</param>
		public ModuleDescriptor(string InName, ModuleHostType InType)
		{
			Name = InName;
			Type = InType;
		}
Beispiel #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="InName">Name of the module</param>
 /// <param name="InType">Type of target that can host this module</param>
 public ModuleDescriptor(string InName, ModuleHostType InType)
 {
     Name = InName;
     Type = InType;
 }