/// <summary>
 /// Set Atlas Academy's export JSON dataset
 /// </summary>
 private void ConfigureExportJson(ConstantExportJson constantExportJson)
 {
     _attributeRelation = constantExportJson.AttributeRelation;
     _classAttackRate   = constantExportJson.ClassAttackRate;
     _classRelation     = constantExportJson.ClassRelation;
     _constantRate      = constantExportJson.ConstantRate;
     _traitEnumInfo     = constantExportJson.TraitEnumInfo;
 }
Beispiel #2
0
 public StandardAttributeFilterRule(string Attribute, AttributeRelation Relation, IComparable Comparable)
     : base(Attribute, Relation)
 {
     this.Comparable = Comparable;
 }
Beispiel #3
0
 public AttributeFilterDefinition(string Attribute, AttributeRelation Relation, string Value)
 {
     this.Attribute = Attribute;
     this.Relation  = Relation;
     this.Value     = Value;
 }
 public AbstractAttributeFilterRule(string Attribute, AttributeRelation Relation)
 {
     this.Attribute = Attribute;
     this.Relation  = Relation;
 }