!B (Sandbox) (CE-21795) Importing models with multisubmaterials via fbx switches...
[CRYENGINE.git] / Code / Tools / LuaRemoteDebugger / Aga.Controls / Tree / NodeControls / NodeControlValueEventArgs.cs
blobe72e17631d12d9b447a57447e43efc7cf590d4c4
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.NodeControls
9 public class NodeControlValueEventArgs : NodeEventArgs
11 private object _value;
12 public object Value
14 get { return _value; }
15 set { _value = value; }
18 public NodeControlValueEventArgs(TreeNodeAdv node)
19 :base(node)