namespace NeonSprawl.Server.Game.Npc;
/// Registers prototype threat/aggro state store (NEO-92).
public static class ThreatStateServiceCollectionExtensions
{
/// Registers as an in-memory singleton.
public static IServiceCollection AddThreatStateStore(this IServiceCollection services)
{
services.AddSingleton();
return services;
}
}