Update Project
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user