19 lines
356 B
C#
19 lines
356 B
C#
|
// 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()
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|