示例#1
0
 public CharacterAttribute(int id)
 {
     this.def = CharacterAttributeDefsAsset.Instance.GetItem(id);
 }
示例#2
0
 public CharacterAttribute(string ident)
 {
     this.def = CharacterAttributeDefsAsset.Instance.GetItem(ident);
 }
示例#3
0
 public CharacterAttribute(CharacterAttributeDef def)
 {
     this.def = def;
 }