Description: | Currently to create a plugin user needs to define a class descriptor every time. For example: class MyPluginDesc : ClassDesc2 {...} class MyPlugin : GeomObject {...} It would be great if user was able to specify all ClassDesc-related properties through class attributes and ClassDesc would be automatically generated behind the scenes. For example: [Descriptor( SuperClassID = SClass_ID.GeomObject, className = "MyPlugin",...] class MyPlugin : GeomObject {...} |