using System; using Avalonia.Input; using Avalonia.Platform; namespace Avalonia.LinuxFramebuffer { internal class CursorFactoryStub : ICursorFactory { public ICursorImpl GetCursor(StandardCursorType cursorType) => new CursorStub(); public ICursorImpl CreateCursor(IBitmapImpl cursor, PixelPoint hotSpot) => new CursorStub(); private class CursorStub : ICursorImpl { public void Dispose() { } } } }