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