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

24 lines
499 B
C#

using ET;
using MongoDB.Bson.Serialization.Attributes;
namespace Cal.DataTable
{
[Config]
public partial class StrengthPlusConfigCategory : ACategory<StrengthPlusConfig>
{
public static StrengthPlusConfigCategory Instance;
public StrengthPlusConfigCategory()
{
Instance = this;
}
}
public partial class StrengthPlusConfig:IConfig
{
[BsonId]
public long Id { get; set; }
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float AddProb;
}
}