- [Core] Project restructure
This commit is contained in:
15
AssetStudio.GUI/Components/GameObjectTreeNode.cs
Normal file
15
AssetStudio.GUI/Components/GameObjectTreeNode.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user