Code/MyLibraryComponent.cs

A simple Game component class derived from Sandbox.Component with a Title attribute. It defines no fields or methods and does nothing at runtime.

using Sandbox;

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

}