Files
aibis-dream/Assets/Editor/Inspector/TalkSceneSoAttribute.cs
T
2025-03-05 14:13:33 +08:00

14 lines
296 B
C#

using UnityEngine;
namespace AibisDream.SystemEditor
{
public class TalkSceneSoAttribute : PropertyAttribute
{
public TalkSceneSO talkSceneSo;
public TalkSceneSoAttribute(TalkSceneSO talkSceneSo)
{
this.talkSceneSo = talkSceneSo;
}
}
}