clean up some stuff revert pet clearing fix initial cache creation not happening without changes/redraws fix draw conditions when framework inactive
11 lines
423 B
C#
11 lines
423 B
C#
namespace MareSynchronos.PlayerData.Data;
|
|
|
|
public class CharacterDataFragmentPlayer : CharacterDataFragment
|
|
{
|
|
public string HeelsData { get; set; } = string.Empty;
|
|
public string HonorificData { get; set; } = string.Empty;
|
|
public string ManipulationString { get; set; } = string.Empty;
|
|
public string MoodlesData { get; set; } = string.Empty;
|
|
public string PetNamesData { get; set; } = string.Empty;
|
|
}
|