using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TrackerBridge.DSP { interface IGazeFilter { event EventHandler OutputAvailable; GazeData? Output { get; } void Input(GazeData input); void Reset(); } }