Пример #1
0
 public FactionContainer()
 {
     _relationships = new List <FactionRelationshipLevel>();
     Unaffiliated   = new FactionRelationshipLevel(0, "Unaffiliated", new List <string>());
     Same           = new FactionRelationshipLevel(0, "Same", new List <string>());
     Self           = this;
 }
Пример #2
0
 private int CompareTo(FactionRelationshipLevel x, FactionRelationshipLevel y)
 {
     return(x.Min.CompareTo(y.Min));
 }
Пример #3
0
 public void SetUnaffiliated(FactionRelationshipLevel level)
 {
     Unaffiliated = level;
 }
Пример #4
0
 public void SetSame(FactionRelationshipLevel level)
 {
     Same = level;
 }