API:KSPModule

From Kerbal Space Program Wiki
Revision as of 18:49, 17 March 2017 by Sal vager (talk | contribs) (Reverted edits by Rocketing Rudolph (talk) to last revision by Glyph)
Jump to: navigation, search

KSPModule is a mostly unused attribute class for listing names of PartModules. Do not use KSPModule; PartModule gives the field PartModule.moduleName to use instead.

// From KSP 1.04 "Kerbal Space Program\KSP_Data\Managed\Assembly-CSharp.dll"
 
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
public class KSPModule : Attribute
{
    public string guiName;
 
    public KSPModule(string guiName);
}