namespace NeonSprawl.Server.Game.Combat;
/// Registers session player combat health store (NEO-95).
public static class PlayerCombatHealthServiceCollectionExtensions
{
/// Registers as an in-memory singleton.
public static IServiceCollection AddPlayerCombatHealthStore(this IServiceCollection services)
{
services.AddSingleton();
return services;
}
}