PKHeX/PKHeX.WinForms
Kurt 6441bdadd8
Add specialized struct for Moveset and IV specs (#3572)
`Moveset` struct stores 4 moves, and exposes methods to interact with a moveset.
`IndividualValueSet` stores a 6 IV template (signed).

Performance impact:
* Less allocating on the heap: Moves - (8 bytes member ptr, 20 bytes heap->8 bytes member)
* Less allocating on the heap: IVs - (8 bytes member ptr, 28 bytes heap->8 bytes member)
* No heap pointers, no need to jump to grab data.
* Easy to inline logic for checking if moves are present (no linq usage with temporary collections).

End result is faster ctor times, less memory used, faster program.
2022-08-21 17:34:32 -07:00
..
Controls Add specialized struct for Moveset and IV specs (#3572) 2022-08-21 17:34:32 -07:00
MainWindow Minor tweaks 2022-08-05 16:18:42 -07:00
Misc File scoped namespaces (#3529) 2022-06-18 11:04:24 -07:00
Properties Add ShowLegalBallsFirst setting (default true) 2022-08-16 17:16:39 -07:00
Resources Fix translate dump of mgdb/encdb/pkmdb 2022-08-20 10:43:04 -07:00
Subforms Add specialized struct for Moveset and IV specs (#3572) 2022-08-21 17:34:32 -07:00
Util Add more xmldoc 2022-08-21 01:39:16 -07:00
FodyWeavers.xml Sword/Shield Update 2019-11-15 17:52:08 -08:00
FodyWeavers.xsd Weave net46 dlls into single exe 2019-10-01 19:55:12 -07:00
PKHeX.WinForms.csproj Update 22.06.26 2022-06-26 22:18:19 -07:00
Program.cs Improved IsOldPkhexCorePresent (#3541) 2022-06-27 22:32:03 -07:00