miepzerino
2025-04-02 2dfa4588b3b5bba2a84dab239d62b1c285478870
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}";
        }
    }
}