You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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;
}
}