Remove unused property causing CI inspection

I don't see this in my Rider locally. I suppose we can remove it, though
it was intentionally added so that the struct mirrors the interface.
This commit is contained in:
Dan Balasescu 2024-08-13 19:52:14 +09:00
parent fbfe3a4887
commit 69c5e6a799
No known key found for this signature in database
1 changed files with 0 additions and 2 deletions

View File

@ -31,7 +31,6 @@ public static class HasCatchObjectStateExtensions
target.AccentColour.Value,
target.HyperDash.Value,
target.IndexInBeatmap.Value,
target.DisplayStartTime,
target.DisplayPosition,
target.DisplaySize,
target.DisplayRotation);
@ -42,7 +41,6 @@ public readonly record struct CatchObjectState(
Color4 AccentColour,
bool HyperDash,
int IndexInBeatmap,
double DisplayStartTime,
Vector2 DisplayPosition,
Vector2 DisplaySize,
float DisplayRotation);