Files
Fishing2/Assets/Scripts/Configs/Gen/Warps/GameHooksWarp.cs
2025-05-10 12:49:47 +08:00

65 lines
1.5 KiB
C#

/**本脚本为自动生成,每次生成会覆盖!请勿手动修改**/
using System;
using System.Collections.Generic;
namespace NBF
{
[Serializable]
public partial class GameHooks
{
private static ConfigContext<GameHooks> _context;
private static ConfigContext<GameHooks> Context => _context ??= Configs.Table<GameHooks>();
public static GameHooks Get(int key)
{
return Context.Get(key);
}
public static GameHooks Get(Predicate<GameHooks> match)
{
return Context.Get(match);
}
public static GameHooks Fist()
{
return Context.Fist();
}
public static GameHooks Last()
{
return Context.Last();
}
public static GameHooks Fist(Predicate<GameHooks> match)
{
return Context.Fist(match);
}
public static GameHooks Last(Predicate<GameHooks> match)
{
return Context.Last(match);
}
public static int Count()
{
return Context.Count();
}
public static int Count(Func<GameHooks, bool> predicate)
{
return Context.Count(predicate);
}
public static List<GameHooks> GetList()
{
return Context.GetList();
}
public static List<GameHooks> GetList(Predicate<GameHooks> match)
{
return Context.GetList(match);
}
}
}