mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-05-25 05:40:21 -04:00
17 lines
295 B
C#
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;
|
|
}
|
|
|
|
}
|
|
}
|