Files
UltimateFishing2020/Assets/Scripts/Assembly-CSharp/SplineMesh/ListChangedEventArgs.cs
2026-03-04 10:03:45 +08:00

19 lines
274 B
C#

using System;
using System.Collections.Generic;
namespace SplineMesh
{
public class ListChangedEventArgs<T> : EventArgs
{
public ListChangeType type;
public List<T> newItems;
public List<T> removedItems;
public int insertIndex;
public int removeIndex;
}
}