Files
2024-11-20 15:21:28 +01:00

14 lines
297 B
C#

using UnityEngine;
using System.Collections;
namespace Gaia
{
/// <summary>
/// Scriptable object wrapper around a game object prototype
/// </summary>
public class ResourceProtoGameObjectSO : ScriptableObject
{
public ResourceProtoGameObject m_gameObject;
}
}