!B (Sandbox) (CE-21795) Importing models with multisubmaterials via fbx switches...
[CRYENGINE.git] / Code / Tools / LuaRemoteDebugger / Aga.Controls / Tree / DropNodeValidatingEventArgs.cs
blobfbbdbf4f895b747211a43c13b8dcadfcc3908e82
1 // Copyright 2001-2019 Crytek GmbH / Crytek Group. All rights reserved.
3 using System;
4 using System.Drawing;
6 namespace Aga.Controls.Tree
8 public class DropNodeValidatingEventArgs: EventArgs
10 Point _point;
11 TreeNodeAdv _node;
13 public DropNodeValidatingEventArgs(Point point, TreeNodeAdv node)
15 _point = point;
16 _node = node;
19 public Point Point
21 get { return _point; }
24 public TreeNodeAdv Node
26 get { return _node; }
27 set { _node = value; }