using System.Collections; using System.Collections.Generic; namespace BITKit { public interface ICallback { void RegisterCallback(T t); void UnRegisterCallback(T t); IEnumerable GetCallbacks(); } }