1
0
mirror of https://github.com/aelurum/AssetStudio.git synced 2025-06-03 00:58:13 -04:00
AssetStudio/AssetStudioGUI/Components/GameObjectTreeNode.cs
2022-11-17 04:23:00 +03:00

17 lines
337 B
C#

using System.Windows.Forms;
using AssetStudio;
namespace AssetStudioGUI
{
internal class GameObjectTreeNode : TreeNode
{
public GameObject gameObject;
public GameObjectTreeNode(GameObject gameObject)
{
this.gameObject = gameObject;
Text = gameObject.m_Name;
}
}
}