Payload.DataResolver is now a property

This commit is contained in:
Raymond 2021-08-09 11:22:57 -04:00
parent b46afa6357
commit 8f93980779

View file

@ -21,15 +21,15 @@ namespace Dalamud.Game.Text.SeStringHandling
/// </summary> /// </summary>
public abstract partial class Payload public abstract partial class Payload
{ {
/// <summary> // private for now, since subclasses shouldn't interact with this.
/// The Lumina instance to use for any necessary data lookups.
/// </summary>
public DataManager DataResolver;
// private for now, since subclasses shouldn't interact with this
// To force-invalidate it, Dirty can be set to true // To force-invalidate it, Dirty can be set to true
private byte[] encodedData; private byte[] encodedData;
/// <summary>
/// Gets or sets the Lumina instance to use for any necessary data lookups.
/// </summary>
public DataManager DataResolver { get; set; }
/// <summary> /// <summary>
/// Gets the type of this payload. /// Gets the type of this payload.
/// </summary> /// </summary>