16 lines
317 B
C#
16 lines
317 B
C#
using System.Windows.Forms;
|
|
|
|
namespace AssetStudio.GUI
|
|
{
|
|
public class GameObjectTreeNode : TreeNode
|
|
{
|
|
public GameObject gameObject;
|
|
|
|
public GameObjectTreeNode(GameObject gameObject)
|
|
{
|
|
this.gameObject = gameObject;
|
|
Text = gameObject.m_Name;
|
|
}
|
|
}
|
|
}
|