public void AddRelation(Character Character, RelationType Relation)
 {
     Relations.Add(new Relation(Character, Relation));
 }
Esempio n. 2
0
 public Relation(Character character, RelationType relationType)
 {
     _character    = character;
     _relationType = relationType;
 }