mirror of
https://github.com/Dongyifengs/AssetStudio-Genshin-MoYi.git
synced 2025-05-06 11:29:18 +08:00
17 lines
335 B
C#
17 lines
335 B
C#
|
using System.Windows.Forms;
|
|||
|
using AssetStudio;
|
|||
|
|
|||
|
namespace AssetStudioGUI
|
|||
|
{
|
|||
|
public class GameObjectTreeNode : TreeNode
|
|||
|
{
|
|||
|
public GameObject gameObject;
|
|||
|
|
|||
|
public GameObjectTreeNode(GameObject gameObject)
|
|||
|
{
|
|||
|
this.gameObject = gameObject;
|
|||
|
Text = gameObject.m_Name;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|