24 lines
415 B
C#
24 lines
415 B
C#
|
using ET;
|
||
|
using MongoDB.Bson.Serialization.Attributes;
|
||
|
|
||
|
namespace Cal.DataTable
|
||
|
{
|
||
|
[Config]
|
||
|
public partial class EffectConfigCategory : ACategory<EffectConfig>
|
||
|
{
|
||
|
public static EffectConfigCategory Instance;
|
||
|
public EffectConfigCategory()
|
||
|
{
|
||
|
Instance = this;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public partial class EffectConfig:IConfig
|
||
|
{
|
||
|
[BsonId]
|
||
|
public long Id { get; set; }
|
||
|
public int EffectType;
|
||
|
public bool IsLoop;
|
||
|
}
|
||
|
}
|