2025-10-03 20:00:05 +05:00

19 lines
444 B
C#

// Copyright (c) Pixel Crushers. All rights reserved.
using UnityEngine;
namespace PixelCrushers.DialogueSystem
{
/// <summary>
/// Add [DialogueEntryPopup] to an int show a popup of dialogue entries in the most recent conversation selection shown in the inspector.
/// </summary>
public class DialogueEntryPopupAttribute : PropertyAttribute
{
public DialogueEntryPopupAttribute()
{
}
}
}