Files
2024-11-20 15:21:28 +01:00

13 lines
262 B
C#

using UnityEngine;
using System.Collections;
namespace Gaia
{
/// <summary>
/// Scriptable object wrapper around a tree
/// </summary>
public class ResourceProtoTreeSO : ScriptableObject
{
public ResourceProtoTree m_tree;
}
}