Add object override for rectangle objects

This commit is contained in:
Daniel Cronqvist 2024-11-17 15:52:20 +01:00
parent 080f95c698
commit c9e85c9fd6
12 changed files with 557 additions and 11 deletions

View file

@ -46,5 +46,6 @@ public static partial class TestData
[GetMapPath("map-with-deep-props"), (string f) => MapWithDeepProps(), MapWithDeepPropsCustomTypeDefinitions()],
[GetMapPath("map-with-class"), (string f) => MapWithClass(), MapWithClassCustomTypeDefinitions()],
[GetMapPath("map-with-class-and-props"), (string f) => MapWithClassAndProps(), MapWithClassAndPropsCustomTypeDefinitions()],
[GetMapPath("map-override-object-bug"), (string f) => MapOverrideObjectBug(f), MapOverrideObjectBugCustomTypeDefinitions()],
];
}