mirror of
https://github.com/DCFApixels/DragonECS-AutoInjections.git
synced 2025-09-18 13:24:35 +08:00
12 lines
274 B
C#
12 lines
274 B
C#
![]() |
namespace DCFApixels.DragonECS
|
|||
|
{
|
|||
|
public static class AutoInjectSystemExtensions
|
|||
|
{
|
|||
|
public static EcsSystems.Builder AutoInject(this EcsSystems.Builder self)
|
|||
|
{
|
|||
|
self.Add(new AutoInjectSystem());
|
|||
|
return self;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|