Files
GSS2Rework/GSS2.Core/Extension/EnumerableExtensions.cs
T
amkovkov 40aa38d353 feat: SectionPanel
Add scroll flugs
Add carusel scroll
Add animation
2026-02-10 15:03:23 +03:00

8 lines
212 B
C#

namespace GSS2.Core.Extentions;
public static class EnumerableExtensions
{
public static IEnumerable<(int i, T value)> Enumerate<T>(this IEnumerable<T> values) => values.Select((value, i) => (i, value));
}