mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-05-25 05:40:21 -04:00
22 lines
430 B
C#
22 lines
430 B
C#
using System.Windows.Forms;
|
|
using AssetStudio;
|
|
|
|
namespace AssetStudioGUI
|
|
{
|
|
internal class GameObjectTreeNode : TreeNode
|
|
{
|
|
public GameObject gameObject;
|
|
|
|
public GameObjectTreeNode(string name)
|
|
{
|
|
Text = name;
|
|
}
|
|
|
|
public GameObjectTreeNode(GameObject gameObject)
|
|
{
|
|
this.gameObject = gameObject;
|
|
Text = gameObject.m_Name;
|
|
}
|
|
}
|
|
}
|