Files
MinFt/Client/Assets/Scripts/TablesEx/ItemEx.cs
2026-04-27 12:07:32 +08:00

28 lines
744 B
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using Bright.Serialization;
using System.Collections.Generic;
using asap.core;
using SimpleJSON;
namespace cfg
{
public sealed partial class Item : Bright.Config.BeanBase
{
private Tables _tables;
private Tables Tables=>_tables??GContext.container.Resolve<Tables>();
public bool IsSpinachItem()
{
return Tables.TbEventSlapSpinach.IsSpinachItem(ID);
}
}
}