Make helpers for filter population

This is another boilerplate reduction for new filters based on new fields. All but enum types are no a single method call for setting, including long and long? values that used to take up like 20 lines apiece. This should reduce the amount of possible issues in setting up the filters.
This commit is contained in:
Matt Nadareski
2020-09-03 23:27:05 -07:00
parent 9c38fd82aa
commit b7dbe728a3
2 changed files with 267 additions and 714 deletions

View File

@@ -61,7 +61,6 @@ namespace SabreTools.Library.DatItems
/// </summary>
NULL = 0,
// TODO: (big|little) "little"
Big = 1 << 0,
Little = 1 << 1,
}