13 lines
262 B
C#
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;
|
|
}
|
|
} |