!B (Sandbox) (CE-21795) Importing models with multisubmaterials via fbx switches...
[CRYENGINE.git] / Code / Tools / LuaRemoteDebugger / Aga.Controls / Tree / NodeControlInfo.cs
blob3e45cfb45271aeeba7a1b4f89f6f1826925521c9
1 // Copyright 2001-2019 Crytek GmbH / Crytek Group. All rights reserved.
3 using System;
4 using System.Collections.Generic;
5 using System.Text;
6 using Aga.Controls.Tree.NodeControls;
7 using System.Drawing;
9 namespace Aga.Controls.Tree
11 public struct NodeControlInfo
13 public static readonly NodeControlInfo Empty = new NodeControlInfo(null, Rectangle.Empty, null);
15 private NodeControl _control;
16 public NodeControl Control
18 get { return _control; }
21 private Rectangle _bounds;
22 public Rectangle Bounds
24 get { return _bounds; }
27 private TreeNodeAdv _node;
28 public TreeNodeAdv Node
30 get { return _node; }
33 public NodeControlInfo(NodeControl control, Rectangle bounds, TreeNodeAdv node)
35 _control = control;
36 _bounds = bounds;
37 _node = node;