mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 20:17:22 +01:00
Add support for Palette+ (#40)
This commit is contained in:
parent
2eb9c0992b
commit
d218d06230
9 changed files with 128 additions and 0 deletions
|
|
@ -11,6 +11,7 @@ public record MareCharaFileData
|
|||
public string Description { get; set; } = string.Empty;
|
||||
public string GlamourerData { get; set; } = string.Empty;
|
||||
public string CustomizePlusData { get; set; } = string.Empty;
|
||||
public string PalettePlusData { get; set; } = string.Empty;
|
||||
public string ManipulationData { get; set; } = string.Empty;
|
||||
public List<FileData> Files { get; set; } = new();
|
||||
public List<FileSwap> FileSwaps { get; set; } = new();
|
||||
|
|
@ -26,6 +27,7 @@ public record MareCharaFileData
|
|||
}
|
||||
|
||||
CustomizePlusData = dto.CustomizePlusData;
|
||||
PalettePlusData = dto.PalettePlusData;
|
||||
ManipulationData = dto.ManipulationData;
|
||||
|
||||
if (dto.FileReplacements.TryGetValue(ObjectKind.Player, out var fileReplacements))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue