feat: SectionPanel

Add scroll flugs
Add carusel scroll
Add animation
This commit is contained in:
2026-02-10 15:03:23 +03:00
parent b638d4e752
commit 40aa38d353
4 changed files with 174 additions and 51 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
namespace GSS2.Core.Extentions;
static class EnumerableExtensions
public static class EnumerableExtensions
{
public static IEnumerable<(int i, T value)> Enumerate<T>(this IEnumerable<T> values) => values.Select((value, i) => (i, value));
}