Files
LuckerGame/code/EntityComponents/Client/ClientComponent.cs
2023-08-02 19:47:53 -04:00

12 lines
319 B
C#

using Sandbox;
namespace LuckerGame.Components.Client;
/// <summary>
/// Intended to be a base class for components intended for IClient, as IClient cannot be used as an EntityComponent type param
/// </summary>
public abstract class ClientComponent : EntityComponent
{
public IClient Client => Entity as IClient;
}