mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-18 18:14:37 +08:00
update injects
This commit is contained in:
parent
20471bbf63
commit
5bab19acb4
@ -161,5 +161,15 @@ namespace DCFApixels.DragonECS
|
|||||||
self.Inject(a).Inject(b).Inject(c).Inject(d).Inject(e).Inject(f);
|
self.Inject(a).Inject(b).Inject(c).Inject(d).Inject(e).Inject(f);
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
public static EcsPipeline.Builder Inject<A, B, C, D, E, F, G>(this EcsPipeline.Builder self, A a, B b, C c, D d, E e, F f, G g)
|
||||||
|
{
|
||||||
|
self.Inject(a).Inject(b).Inject(c).Inject(d).Inject(e).Inject(f).Inject(g);
|
||||||
|
return self;
|
||||||
|
}
|
||||||
|
public static EcsPipeline.Builder Inject<A, B, C, D, E, F, G>(this EcsPipeline.Builder self, A a, B b, C c, D d, E e, F f, G g, H h)
|
||||||
|
{
|
||||||
|
self.Inject(a).Inject(b).Inject(c).Inject(d).Inject(e).Inject(f).Inject(g).Inject(h);
|
||||||
|
return self;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user