miepzerino
2025-04-03 d9d5b7b5c58a7b044b78ee7993f0a15e5b79f689
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}";
        }
    }
}