CTT/Tools/ExcelTool/CS/Sys_Prefab.cs

31 lines
586 B
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
using ET;
using MongoDB.Bson.Serialization.Attributes;
namespace Cal.DataTable
{
[Config]
public partial class Sys_PrefabCategory : ACategory<Sys_Prefab>
{
public static Sys_PrefabCategory Instance;
public Sys_PrefabCategory()
{
Instance = this;
}
}
public partial class Sys_Prefab:IConfig
{
[BsonId]
public long Id { get; set; }
public string Name;
public string Desc;
public byte AssetCategory;
public string AssetPath;
public byte PoolId;
public bool CullDespawned;
public int CullAbove;
public int CullDelay;
public int CullMaxPerPass;
}
}