using CoreGame; using Entitas; namespace CoreGame.Render.Systems { public class MotionSyncFeature : Feature { public MotionSyncFeature(Contexts contexts) { Add(new LocationSyncSystem(contexts)); Add(new MonsterIndicatorSys(contexts), new SystemTickInfo() { frameSpan = GameTime.MiddleSpanTime }); } } }