mirror of
https://github.com/Bragin-Stepan/project-entity.git
synced 2026-03-02 14:29:23 +00:00
19 lines
545 B
C#
19 lines
545 B
C#
using Assets._Project.Develop.Runtime.Infrastructure.DI;
|
|
using Assets._Project.Develop.Runtime.Utilities.CoroutinesManagement;
|
|
|
|
namespace Assets._Project.Develop.Runtime.Utilities.Timer
|
|
{
|
|
public class TimerServiceFactory
|
|
{
|
|
private readonly DIContainer _container;
|
|
|
|
public TimerServiceFactory(DIContainer container)
|
|
{
|
|
_container = container;
|
|
}
|
|
|
|
public TimerService Create(float cooldown)
|
|
=> new TimerService(cooldown, _container.Resolve<ICoroutinesPerformer>());
|
|
}
|
|
}
|