ProjectDDD/Assets/Plugins/Pixel Crushers/Dialogue System/Scripts/Utility/Attributes/DialogueTriggerEventAttribute.cs
2025-07-08 19:46:31 +09:00

20 lines
426 B
C#

// Copyright (c) Pixel Crushers. All rights reserved.
using UnityEngine;
namespace PixelCrushers.DialogueSystem
{
/// <summary>
/// Add [DialogueTriggerEvent] to a string variable show a popup of
/// dialogue trigger events in the inspector.
/// </summary>
public class DialogueTriggerEventAttribute : PropertyAttribute
{
public DialogueTriggerEventAttribute()
{
}
}
}