Files
CortexCore 432414106b 1
2024-03-17 02:24:55 +08:00

29 lines
483 B
C#

#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