namespace NeonSprawl.Server.Game.Npc;
/// Registers prototype NPC runtime behavior state store (NEO-93).
public static class NpcRuntimeServiceCollectionExtensions
{
/// Registers as an in-memory singleton.
public static IServiceCollection AddNpcRuntimeStateStore(this IServiceCollection services)
{
services.AddSingleton();
return services;
}
}