namespace NeonSprawl.Server.Game.Combat;
/// Registers prototype combat entity health store (NEO-80).
public static class CombatEntityHealthServiceCollectionExtensions
{
/// Registers as an in-memory singleton.
public static IServiceCollection AddCombatEntityHealthStore(this IServiceCollection services)
{
services.AddSingleton();
return services;
}
}