You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using UnityEngine;
using Zenject;
public class EntityHandlerInstaller : MonoInstaller
{
public override void InstallBindings()
{
Container.Bind(typeof(IEntityHandlerSystem<>)).To(typeof(EntityHandlerSystem<>)).AsSingle();
}
}
Expected behavior
To use generics
Extenject and Unity info (please complete the following information):
Zenject version: Unity Plugin
Unity version: Unity 6
The text was updated successfully, but these errors were encountered:
Describe the bug
Following this issue: https://stackoverflow.com/questions/45970666/zenject-install-generic-binding
I'm having the same bug with trying to bind a generic with installer
To Reproduce
Create a installer:
Expected behavior
To use generics
Extenject and Unity info (please complete the following information):
The text was updated successfully, but these errors were encountered: