Heroes_of_Hiis/Assets/Polaris - Low Poly Ecosystem/Polaris - Low Poly Terrain .../Runtime/Scripts/Utilities/GTextAsset.cs

29 lines
483 B
C#
Raw Normal View History

#if GRIFFIN
using UnityEngine;
namespace Pinwheel.Griffin
{
//[CreateAssetMenu(menuName = "Griffin/Text Asset")]
public class GTextAsset : ScriptableObject
{
[SerializeField]
private string text;
public string Text
{
get
{
return text;
}
set
{
text = value;
}
}
public void Reset()
{
}
}
}
#endif