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

27 lines
464 B
C#
Raw Normal View History

2023-12-30 17:37:48 +08:00
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()
{
}
}
}