CapersProject/Assets/Plugins/Pixel Crushers/Dialogue System/Scripts/Utility/Attributes/DialogueEntryPopupAttribute.cs

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()
{
}
}
}