BaseCursor.cs 270 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Veldrid.Common.Plot
  5. {
  6. public abstract class BaseCursor : BaseDropRender, ICursor
  7. {
  8. protected BaseCursor(IVeldridContent control) : base(control)
  9. {
  10. }
  11. }
  12. }