mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-01-03 06:13:45 +01:00
Stop using windows forms, add extensive meta manipulation editing, fix a concurrency crash and a dumb crash.
This commit is contained in:
parent
e5b739fc52
commit
0c3c7ea363
25 changed files with 1266 additions and 302 deletions
|
|
@ -19,18 +19,18 @@ public readonly struct EstManipulation : IMetaManipulation< EstManipulation >
|
|||
Head = CharacterUtility.HeadEstIdx,
|
||||
}
|
||||
|
||||
public readonly ushort Entry; // SkeletonIdx.
|
||||
public ushort Entry { get; init; } // SkeletonIdx.
|
||||
|
||||
[JsonConverter( typeof( StringEnumConverter ) )]
|
||||
public readonly Gender Gender;
|
||||
public Gender Gender { get; init; }
|
||||
|
||||
[JsonConverter( typeof( StringEnumConverter ) )]
|
||||
public readonly ModelRace Race;
|
||||
public ModelRace Race { get; init; }
|
||||
|
||||
public readonly ushort SetId;
|
||||
public ushort SetId { get; init; }
|
||||
|
||||
[JsonConverter( typeof( StringEnumConverter ) )]
|
||||
public readonly EstType Slot;
|
||||
public EstType Slot { get; init; }
|
||||
|
||||
[JsonConstructor]
|
||||
public EstManipulation( Gender gender, ModelRace race, EstType slot, ushort setId, ushort entry )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue