© 2026 Hedgehog Software, LLC
public class Something { private A _a; private B _b; public Something(A a) { _a = a; } [Inject] public void Construct(B b) { _b = b; }
public class Test : MonoBehaviour { public void Start() { var smth = new Something(_a); } }
_b