zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Server/Model/Game/Data/Sys_Prefab.cs

30 lines
557 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 string AssetPath;
public byte PoolId;
public bool CullDespawned;
public int CullAbove;
public int CullDelay;
public int CullMaxPerPass;
}
}