14 lines
269 B
C#
14 lines
269 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
namespace Gaia
|
|
{
|
|
/// <summary>
|
|
/// Scriptable object wrapper about a detail
|
|
/// </summary>
|
|
public class ResourceProtoDetailSO : ScriptableObject
|
|
{
|
|
public ResourceProtoDetail m_detail;
|
|
}
|
|
}
|