fix: Fixes parsing Rect3D and fixes AS contains name (#2333)

This commit is contained in:
Kamron Batman 2026-02-09 22:49:18 -08:00 committed by GitHub
parent d625ea5ba4
commit 0b8dcdfeaf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -20,7 +20,7 @@ namespace Server;
[NoSort]
[PropertyObject]
public struct Rectangle3D : IEquatable<Rectangle3D>, ISpanFormattable
public struct Rectangle3D : IEquatable<Rectangle3D>, ISpanFormattable, ISpanParsable<Rectangle3D>
{
private Point3D _start;
private Point3D _end;