2021-04-08 20:09:59 +08:00
|
|
|
using ET;
|
|
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
|
|
|
|
|
|
namespace Cal.DataTable
|
|
|
|
{
|
|
|
|
[Config]
|
|
|
|
public partial class MainStoryCategory : ACategory<MainStory>
|
|
|
|
{
|
|
|
|
public static MainStoryCategory Instance;
|
|
|
|
public MainStoryCategory()
|
|
|
|
{
|
|
|
|
Instance = this;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public partial class MainStory:IConfig
|
|
|
|
{
|
|
|
|
public partial class Monster_1
|
|
|
|
{
|
|
|
|
public int Monster_1_Id;
|
|
|
|
public int Monster_1_Count;
|
|
|
|
}
|
|
|
|
public partial class MonsterPos
|
|
|
|
{
|
|
|
|
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
|
|
|
|
public float MonsterPos_X;
|
|
|
|
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
|
|
|
|
public float MonsterPos_Y;
|
|
|
|
}
|
|
|
|
[BsonId]
|
|
|
|
public long Id { get; set; }
|
|
|
|
public int SceneId;
|
|
|
|
public int Layer;
|
|
|
|
public Monster_1[] Monster_1Arr;
|
|
|
|
public MonsterPos[] MonsterPosArr;
|
2021-05-01 11:27:41 +08:00
|
|
|
public int DropId;
|
2021-04-08 20:09:59 +08:00
|
|
|
}
|
|
|
|
}
|