using System.Collections; using System.Collections.Generic; using UnityEngine; using DCFApixels.DragonECS; namespace #NAMESPACE# { public class #SCRIPTNAME# : IEcsRunSystem, IEcsInject> { private EcsWorld _world; public void Inject(EcsWorld obj) => _world = obj; public void Run(EcsSystems systems) { // will be called on each EcsSystems.Run() call } } }