refactor: expose ITextProvider

Working with payloads is extremely tedious without this being exposed.
This commit is contained in:
Anna Clemens 2020-09-26 23:58:06 -04:00 committed by GitHub
parent 20a1d1ae2d
commit cfad83cf62
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@ using System;
namespace Dalamud.Game.Chat.SeStringHandling
{
interface ITextProvider
public interface ITextProvider
{
string Text { get; }
}