using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.RemoteDesktop.Comparers; using Tango.RemoteDesktop.Frames; namespace Tango.RemoteDesktop.Engines { /// /// Represents a vector screen capture engine. /// The difference delivered by the event is of type . /// /// public class VectorScreenCaptureEngine : ScreenCaptureEngine { public VectorScreenCaptureEngine() : base(new VectorBitmapComparer()) { } } }