IDrawNode.cs 315 B

123456789101112
  1. // Copyright (c) The Avalonia Project. All rights reserved.
  2. // Licensed under the MIT license. See licence.md file in the project root for full license information.
  3. using System;
  4. namespace Avalonia.Rendering.SceneGraph
  5. {
  6. public interface IDrawNode : ISceneNode
  7. {
  8. bool HitTest(Point p);
  9. }
  10. }