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