!B (Sandbox) (CE-21795) Importing models with multisubmaterials via fbx switches...
[CRYENGINE.git] / Code / Tools / LuaRemoteDebugger / Aga.Controls / Tree / DropPosition.cs
blobe7a9b9d32ce45290fdfb70a85edf4de1c6b808fa
1 // Copyright 2001-2019 Crytek GmbH / Crytek Group. All rights reserved.
3 using System;
4 using System.Collections.Generic;
5 using System.Text;
7 namespace Aga.Controls.Tree
9 public struct DropPosition
11 private TreeNodeAdv _node;
12 public TreeNodeAdv Node
14 get { return _node; }
15 set { _node = value; }
18 private NodePosition _position;
19 public NodePosition Position
21 get { return _position; }
22 set { _position = value; }