mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +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>
|
||||
public abstract partial class Payload
|
||||
{
|
||||
/// <summary>
|
||||
/// The Lumina instance to use for any necessary data lookups.
|
||||
/// </summary>
|
||||
public DataManager DataResolver;
|
||||
|
||||
// private for now, since subclasses shouldn't interact with this
|
||||
// private for now, since subclasses shouldn't interact with this.
|
||||
// To force-invalidate it, Dirty can be set to true
|
||||
private byte[] encodedData;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the Lumina instance to use for any necessary data lookups.
|
||||
/// </summary>
|
||||
public DataManager DataResolver { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the type of this payload.
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue