Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/rail/AsyncListFileResult.cs
2026-02-21 16:45:37 +08:00

16 lines
275 B
C#

using System.Collections.Generic;
namespace rail
{
public class AsyncListFileResult : EventBase
{
public List<RailStreamFileInfo> file_list = new List<RailStreamFileInfo>();
public uint try_list_file_num;
public uint all_file_num;
public uint start_index;
}
}