15 lines
233 B
C#
15 lines
233 B
C#
namespace Zenject
|
|
{
|
|
// We extract the interface so that monobehaviours can be installers
|
|
public interface IInstaller
|
|
{
|
|
void InstallBindings();
|
|
|
|
bool IsEnabled
|
|
{
|
|
get;
|
|
}
|
|
}
|
|
|
|
}
|