AssetStudio/AssetStudioCLI/Components/GameObjectNode.cs
2023-08-31 21:07:02 +01:00

17 lines
295 B
C#

using AssetStudio;
using System.Collections.Generic;
namespace AssetStudioCLI
{
internal class GameObjectNode : BaseNode
{
public GameObject gameObject;
public GameObjectNode(GameObject gameObject)
{
this.gameObject = gameObject;
}
}
}