Code/MyLibraryComponent.cs

A simple empty Sandbox component class named MyLibraryComponent with a Title attribute. It contains no methods or fields and does nothing beyond being a Component-derived type.

using Sandbox;

/// <summary>
/// This is a component - in your library!
/// </summary>
[Title( "Image to Material - My Component" )]
public class MyLibraryComponent : Component
{

}