Files
ClubPenguinClient/MareSynchronos/PlayerData/Data/CharacterDataFragment.cs
Stanley Dimant f033b1aa74 rework cache creation conditions
clean up some stuff

revert pet clearing

fix initial cache creation not happening without changes/redraws

fix draw conditions when framework inactive
2025-08-15 05:19:48 +00:00

9 lines
289 B
C#

namespace MareSynchronos.PlayerData.Data;
public class CharacterDataFragment
{
public string CustomizePlusScale { get; set; } = string.Empty;
public HashSet<FileReplacement> FileReplacements { get; set; } = [];
public string GlamourerString { get; set; } = string.Empty;
}