forked from aly/qstbak
10 lines
151 B
C#
10 lines
151 B
C#
using Lumina.Text.ReadOnly;
|
|
|
|
namespace LLib;
|
|
|
|
public interface IQuestDialogueText
|
|
{
|
|
ReadOnlySeString Key { get; }
|
|
|
|
ReadOnlySeString Value { get; }
|
|
}
|