Update Project

This commit is contained in:
2026-03-20 13:04:43 +02:00
parent 9b587e6cba
commit beae2dea89
2295 changed files with 251259 additions and 33 deletions
@@ -0,0 +1,18 @@
namespace Zenject.Tests.Installers.Installers
{
public class BarInstaller : Installer<string, BarInstaller>
{
string _value;
[Inject]
public void Construct(string value)
{
_value = value;
}
public override void InstallBindings()
{
Container.BindInstance(_value);
}
}
}
@@ -0,0 +1,12 @@
fileFormatVersion: 2
guid: e3fd51e14e913e243bb9c3afbc514fd8
timeCreated: 1465658298
licenseType: Free
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
@@ -0,0 +1,14 @@
namespace Zenject.Tests.Installers.Installers
{
public class Foo
{
}
public class FooInstaller : Installer<FooInstaller>
{
public override void InstallBindings()
{
Container.Bind<Foo>().AsSingle().NonLazy();
}
}
}
@@ -0,0 +1,12 @@
fileFormatVersion: 2
guid: 19d8f9dc0fef466468a6a0ab8b59a8ac
timeCreated: 1465658298
licenseType: Free
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
@@ -0,0 +1,18 @@
namespace Zenject.Tests.Installers.Installers
{
public class QuxInstaller : Installer<string, float, int, QuxInstaller>
{
string _p1;
[Inject]
public void Construct(string p1, float p2, int p3)
{
_p1 = p1;
}
public override void InstallBindings()
{
Container.BindInstance(_p1);
}
}
}
@@ -0,0 +1,12 @@
fileFormatVersion: 2
guid: 06dbf735e0bda0047af56033fa90bf9c
timeCreated: 1465658298
licenseType: Free
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant: