Exemple #1
0
 private DlgLine(DlgLine other)
 {
     this.text      = other.text;
     this.id        = other.id;
     this.character = other.character;
     this.actions   = other.actions;
 }
Exemple #2
0
 private DlgCharacter(DlgCharacter other)
 {
     this.name      = other.name;
     this.dlgLines  = other.dlgLines;
     this.lineIndex = other.lineIndex;
 }