mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 12:14:16 +01:00
Payload.DataResolver is now a property
This commit is contained in:
parent
b46afa6357
commit
8f93980779
1 changed files with 6 additions and 6 deletions
|
|
@ -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>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue