miepzerino
2025-04-03 b6a9e525aa30f6ea7b26ca41c0400b60b7118806
Assets/Scripts/Helpers/VectorHelper.cs
@@ -138,5 +138,14 @@
            }
            return result;
        }
        public static string ToRangeString(this Vector2 vector)
        {
            if (vector.x == vector.y)
            {
                return $"{vector.x}";
            }
            return $"{vector.x}-{vector.y}";
        }
    }
}