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

19 lines
356 B
C#
Raw Normal View History

// Copyright (c) Pixel Crushers. All rights reserved.
using UnityEngine;
namespace PixelCrushers.DialogueSystem
{
/// <summary>
/// Add [QuestState] to a QuestState variable to show a nicer popup.
/// </summary>
public class QuestStateAttribute : PropertyAttribute
{
public QuestStateAttribute()
{
}
}
}