using System; namespace Ray.Core.Abstractions { public interface IObserverUnitContainer { IObserverUnit GetUnit(Type grainType); object GetUnit(Type grainType); void Register(IGrainID followUnit); } }