namespace NeonSprawl.Server.Game.AbilityInput; /// Registers prototype ability cooldown store + (NEO-32). public static class AbilityCooldownServiceCollectionExtensions { public static IServiceCollection AddAbilityCooldownStore(this IServiceCollection services) { services.AddSingleton(TimeProvider.System); services.AddSingleton(); return services; } }