Files
beyond/Assets/ThirdParty/Procedural Worlds/Gaia/Scripts/ResourcesSystem/ResourceProtoTextureSO.cs
2024-11-20 15:21:28 +01:00

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