V

Results 2 issues of V

Functional Example (just set CharacterCustomizationAppearancesObj): ``` public enum Gender { Female, Male } public Gender VoiceTone { get { return (Gender)CharacterCustomizationAppearancesObj.UnknownFirstBytes[5]; } set { CharacterCustomizationAppearancesObj.UnknownFirstBytes[5] = (byte)value; } } ```

The format looks fairly straightforward after removing all "4294967295" elements. Apparent order of elements: 0 - Skin Tone (0-indexed) 1 - Skin Type (0-indexed) 2 - Hair Style (0-indexed) 3...

enhancement