14 lines
274 B
C#
14 lines
274 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
namespace Gaia
|
|
{
|
|
/// <summary>
|
|
/// Scriptable object wrapper around a texture
|
|
/// </summary>
|
|
public class ResourceProtoTextureSO : ScriptableObject
|
|
{
|
|
public ResourceProtoTexture m_texture;
|
|
}
|
|
}
|