27 lines
691 B
C#
27 lines
691 B
C#
using MongoDB.Bson.Serialization.Attributes;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ET
|
|
{
|
|
[BsonIgnoreExtraElements]
|
|
public class UserSetting:Entity,ISerializeToEntity
|
|
{
|
|
[BsonIgnore]
|
|
public const int MaxAutoSKillCount = 6;
|
|
[BsonIgnore]
|
|
public const int MainUISlotCount = 9;
|
|
|
|
public int CD;
|
|
public long lastCD;
|
|
public bool canUse;
|
|
public bool IsAutoSkill { get; set; }
|
|
public bool IsDisplayOthers { get; set; }
|
|
|
|
public LinkedList<int> AutoSkillList = new LinkedList<int>();
|
|
|
|
public MainUISlot[] MainUISlotArr = new MainUISlot[MainUISlotCount];
|
|
}
|
|
}
|