14 lines
296 B
C#
14 lines
296 B
C#
using UnityEngine;
|
|
|
|
namespace AibisDream.SystemEditor
|
|
{
|
|
public class TalkSceneSoAttribute : PropertyAttribute
|
|
{
|
|
public TalkSceneSO talkSceneSo;
|
|
|
|
public TalkSceneSoAttribute(TalkSceneSO talkSceneSo)
|
|
{
|
|
this.talkSceneSo = talkSceneSo;
|
|
}
|
|
}
|
|
} |