/
GeekNerd
/
ServerModelingProject
Обзор
Документация
Войти
/
GeekNerd
/
ServerModelingProject
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Assets/Plugins/Zenject/Source/Install/InstallerBase.cs
20 строк
385 B
Gorney-Alex
Init
30 май 2026, 19:05
30 май 2026, 19:05
3cdcc49
Код
Авторство
О чём код?
namespace Zenject { public abstract class InstallerBase : IInstaller { [Inject] DiContainer _container = null; protected DiContainer Container { get { return _container; } } public virtual bool IsEnabled { get { return true; } } public abstract void InstallBindings(); } }