Skip to content

Commit

Permalink
Remove untyped prototype data ref field parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
Crypto137 committed Jan 25, 2024
1 parent a4d8e1d commit a57d87d
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ public partial class CalligraphySerializer
{ typeof(float), ParseFloat32 },
{ typeof(double), ParseFloat64 },
{ typeof(Enum), ParseEnum },
{ typeof(ulong), ParseDataRef }, // ulong fields are data refs we haven't defined exact types for yet
{ typeof(AssetId), ParseDataRef },
{ typeof(AssetTypeId), ParseDataRef },
{ typeof(CurveId), ParseDataRef },
Expand All @@ -33,7 +32,6 @@ public partial class CalligraphySerializer
{ typeof(float[]), ParseListFloat32 },
{ typeof(double[]), ParseListFloat64 },
{ typeof(Enum[]), ParseListEnum },
{ typeof(ulong[]), ParseListDataRef }, // ulong fields are data refs we haven't defined exact types for yet
{ typeof(AssetId[]), ParseListDataRef },
{ typeof(AssetTypeId[]), ParseListDataRef },
{ typeof(CurveId[]), ParseListDataRef },
Expand Down

0 comments on commit a57d87d

Please sign in to comment.