using System; using System.Collections.Generic; namespace BizHawk.Emulation.Common { // TODO: This isn't a CoreService, it is a sub class of a core service, it would be nice to make that clear public interface IInputCallbackSystem : ICollection { /// /// Will iterate and call every callback /// void Call(); /// /// Will remove the given list of callbacks /// void RemoveAll(IEnumerable actions); } }