mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-06-03 00:58:13 -04:00
23 lines
471 B
C#
23 lines
471 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace AssetStudio
|
|
{
|
|
public class GameObjectTreeNode : TreeNode
|
|
{
|
|
public GameObject gameObject;
|
|
|
|
public GameObjectTreeNode(GameObject gameObject)
|
|
{
|
|
if (gameObject != null)
|
|
{
|
|
this.gameObject = gameObject;
|
|
Text = gameObject.m_Name;
|
|
}
|
|
}
|
|
}
|
|
}
|