Files
aibis-dream/Assets/Editor/Script/TalkSceneSoAttribute.cs
T
2025-01-08 11:41:20 +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;
}
}
}