using UnityEngine; namespace RebootKit.Engine.Simulation.Sensors { public interface ISensor { GameObject Sense(); } public interface ISensor where T : class { T Sense(); } }