MyLibraryComponent.cs

A small empty component class for the game library. It derives from Sandbox.Component and only has a Title attribute, no fields or methods.

using Sandbox;

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

}